BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
PseuMarc.cxx
Go to the documentation of this file.
1//*********************************************
2//
3// Environment:
4// This software is part of models developed at BES collaboration.
5// If you use all or part of it, please give an appropriate acknowledgement.
6//
7// Copyright Information:
8//
9// Module: PseuMarc.cc
10//
11// Description: to unify the random engines of :
12// Rlu in lund_crm1_evtgen.F as EvtGen
13// Pyr in Pythia
14// by replace the random number in PseuMar_makeVec(rved,lenv)(see PseuMar.F),
15// RANMAR(RVEC,LENV) in tauola.F
16// Modification history:
17//
18// Ping R.-G. Nov., 2007 Module created
19//
20//------------------------------------------------------------------------
21
22#include "../KKMCRandom.h"
23#include <iostream>
24using namespace std;
25
26extern "C" {
27extern void flat_( float* );
28}
29
30static int nr = 0;
31
32void flat_( float* rndm ) {
33 *rndm = (float)KKMCRandom::random();
34 nr++;
35 // cout<<nr<<": "<<"KKMCRandom= "<<*rndm<<endl;
36 return;
37}
float flat_()
Definition Babayaga.cxx:122
static double random()