/[PAMELA software]/PamVMC/examples/run_fluka_testTRK.C
ViewVC logotype

Contents of /PamVMC/examples/run_fluka_testTRK.C

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.5 - (show annotations) (download)
Fri Jun 12 18:39:14 2009 UTC (16 years, 6 months ago) by pam-rm2
Branch: MAIN
Changes since 1.2: +0 -0 lines
File MIME type: text/plain
- Introduced user-defined names of output files and random seeds number.
Users can do it use options of PamVMCApplication constructor:
PamVMCApplication(const char* name,  const char *title, const char*
filename="pamtest", Int_t seed=0).
The Random object that I use is TRandom3 object which has astronomical
large period (in case of default initialization 0). All random generators
in the code use this object by calling of gRandom singleton which keeps
it.

- Corrected TOF digitization routine. No problems with TDC hits due to
hadronic interactions anymore.

- Some small changes was done to compile code under Root 5.23. +
geant4_vmc v. 2.6 without any warnings

- Some classes of PamG4RunConfiguartion was changed for geant4_vmc v.
2.6.Some obsolete classes was deleted as soon as developers implemented
regions.

- Navigation was changed from "geomRootToGeant4" to "geomRoot", because on
VMC web page written that as soon as Geant4 has no option ONLY/MANY
translation of overlapped geometry to Geant4 through VGM could be wrong.
I'd like to stay with Root navigation:
http://root.cern.ch/root/vmc/Geant4VMC.html. This should be default
option.

- New Tracker digitization routine written by Sergio was implemented

- PamVMC again became compatible with geant4_vmc v.2.5 and ROOT 5.20.
 The problem was that ROOT developers introduced in TVirtualMC class a new
method SetMagField and new base class:TVirtualMagField from which
user-defined classes shoukd be derived

1 // $Id: run_g4.C,v 1.0 2007/06/01
2 //
3 // Macro for running G4PAM_VMC with
4 class TFluka;
5
6 void run_fluka_testTRK(const TString& configMacro = "flukaConfig.C")
7 {
8 // Load basic libraries
9 gROOT->LoadMacro("../macro/basiclibs.C");
10 basiclibs();
11
12 // Load PAMELA libs
13 TString PAMLIB=gSystem->Getenv("PAM_LIB");
14 gSystem->Load(PAMLIB+"/libyoda.so");
15 gSystem->Load(PAMLIB+"/libDarthVader.so");
16 gSystem->Load(PAMLIB+"/libPamLevel2.so");
17
18
19 // Load TFluka libraries
20 gSystem->Load("/home/nikolas/francesco/vmc/fluka_vmc/lib/tgt_linux/libfluka");
21 //gSystem->Load("/cern/fluka_vmc/lib/tgt_linux/libfluka");
22 // Load this example libraries
23 TString G4WD=gSystem->Getenv("G4WORKDIR");
24 TString PLAT=gSystem->Getenv("PLATFORM");
25 gSystem->Load(G4WD+"/lib/tgt_"+PLAT+"/libPamVMC_fc");
26
27 // MC application
28 PamVMCApplication* appl
29 = new PamVMCApplication("PAMFLUKA_VMC", "PAMELA GEANT4 VMC application");
30
31
32 appl->SetVerboseLevel(1);
33
34
35 // Initialize MC
36
37 appl->InitMC(configMacro);
38 // appl->SetVerboseLevel(1);
39
40 // Run MC
41
42
43 appl->GetPrimaryGenerator()->SetParticle(kProton);
44 appl->GetPrimaryGenerator()->SetDirection(0.,0.);
45 appl->GetPrimaryGenerator()->SetKinEnergy(1.);
46 appl->GetPrimaryGenerator()->SetPosition(1.,1.,130.);
47
48 for (Int_t i=0; i<200; i++){
49 cout<<"Event "<<i<<endl;
50 appl->RunMC(1);
51 }
52
53
54 appl->FinishRun();
55 delete appl;
56
57 // return
58
59 }

  ViewVC Help
Powered by ViewVC 1.1.23