/[PAMELA software]/PamVMC_update/G4main/PamVMCmain.cxx_backup_120619_vformato
ViewVC logotype

Contents of /PamVMC_update/G4main/PamVMCmain.cxx_backup_120619_vformato

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (show annotations) (download) (vendor branch)
Tue Oct 15 15:51:11 2013 UTC (11 years, 5 months ago) by formato
Branch: MAIN, rel
CVS Tags: reltag, HEAD
Changes since 1.1: +0 -0 lines
PamVMC update

1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <iostream>
4
5 //ROOT headers
6 #include <TSystem.h>
7 #include <TSystemFile.h>
8 #include <TDirectory.h>
9 #include <TFile.h>
10 #include <TTree.h>
11 #include <TObjString.h>
12 //#include <TObjectTable.h>
13
14 //G4VMC headers
15 #include <TGeant4.h>
16
17 //VMC headers
18 #include "PamVMCApplication.h"
19 #include "PamVMCOptMgr.h"
20 //This is main VMC routine
21 using namespace std;
22
23 #define DEBUG 0
24
25 void PackDump(TString path, TObjString* os);
26 void UnPackDump(TString path, TObjString* os);
27
28 int main(int argc, char **argv)
29 {
30
31 if(argc < 2) {
32 cout<<"ERROR: PamVMCmain - no input file specified"<<endl;
33 abort();
34 }
35 //Option1 montecarlo selection, default G4
36 gSystem->Load("libg4root.so");
37 cout<<" Input card file: "<<argv[1]<<endl;
38
39 PamVMCOptMgr * omg = PamVMCOptMgr::Instance();
40 omg->ParseFile(argv[1]);
41 omg->Print();
42
43 //Checking if cookie and temp_path
44 TString working_path = omg->GetOutPath();
45 TString cookie = "";
46 if( omg->IsUseCookie() ){
47 cookie = gSystem->Getenv("PBS_JOBCOOKIE");
48 working_path = omg->GetTmpPath();
49 working_path += "/";
50 working_path += cookie;
51 }
52 TSystemFile *ff = new TSystemFile();
53 if( !ff->IsDirectory(working_path)) gSystem->mkdir(working_path);
54 delete ff;
55
56 //if I'm going to store random stuff I need temporary directory to dump g4 engine status
57 TString tmpseeddir;
58 Int_t save_ev;
59 TObjString* ev_dump = NULL;
60 TFile * dmp_file = NULL;
61 TTree * t_dump = NULL;
62 tmpseeddir = working_path;
63 tmpseeddir += "/";
64 tmpseeddir += omg->GetOutPattern();
65 tmpseeddir+="_g4rndm_tmp";
66 if (omg->DoWriteRandom()){
67
68 cout<<"Making Geant-4 RNDM tmp directory: "<<tmpseeddir<<endl;
69 gSystem->mkdir(tmpseeddir);
70
71 //Changing directory
72
73 gSystem->Exec("cd "+working_path);
74 gSystem->cd(working_path);
75 //gDirectory->cd(working_path);
76
77 //Making files and trees for saved random statuses
78
79 ev_dump = new TObjString();
80 TString file_dump_name_tmp = working_path;
81 file_dump_name_tmp += "/";
82 file_dump_name_tmp += omg->GetRandomOutFilename();
83 dmp_file = new TFile(file_dump_name_tmp,"recreate");
84 t_dump = new TTree("dumps","G4 rndm for events");
85 t_dump->Branch("evno", &save_ev,"save_ev/I");
86 t_dump->Branch("dump_cont","TObjString", &ev_dump);
87 }
88
89 //INITIALIZATION OF MC
90 TString out_tmp_fname = working_path;
91 out_tmp_fname += "/";
92 out_tmp_fname += omg->GetOutPattern();
93 cout<<out_tmp_fname<<endl;
94 PamVMCApplication* appl
95 = new PamVMCApplication("PAMG4_VMC", "PAMELA GEANT4 VMC application",out_tmp_fname,0);
96 //setting verbose level
97 appl->SetVerboseLevel( omg->GetVerboseLevel() );
98 //initialize physycs with specific RunConfiguration, defined in macro
99 appl->InitMC( omg->GetG4ConfigC() );
100 cout<<"MACRO READED"<<endl;
101 //additional flags and controls related to G4 core
102 ((TGeant4*)gMC)->ProcessGeantMacro( omg->GetG4ConfigIn() );
103 //set maximum allowed steps
104 ((TGeant4*)gMC)->SetMaxNStep( omg->GetMaxSteps() );
105
106 //generate initial random seed if any
107 TFile * read_rndm_file = NULL;
108 TTree * read_rndm_tree = NULL;
109 Int_t inpev;
110 TObjString * rnd_dump = NULL;
111 TString tmpfile;
112 if ( omg->IsReadRandomMode() ){
113 //read random seed from file
114 cout<<"Making Geant-4 RNDM tmp directory: "<<tmpseeddir<<endl;
115 gSystem->mkdir(tmpseeddir);
116 tmpfile = tmpseeddir+"/currEvent.rndm";
117 gSystem->Exec("cd "+working_path);
118 gSystem->cd(working_path);
119 read_rndm_file = new TFile( omg->GetRandomInFilename() );
120 read_rndm_tree = (TTree*)read_rndm_file->Get("dumps");
121 Int_t inpev;
122 read_rndm_tree->SetBranchAddress("evno", &inpev);
123 read_rndm_tree->SetBranchAddress("dump_cont", &rnd_dump);
124 } else {
125 Int_t seed1, seed2;
126 if( omg->IsUserRandomMode() ){
127 omg->GetUserRandomSeed( seed1, seed2 );
128 } else {
129 TRandom3 rinit1(0);
130 TRandom3 rinit2(0);
131 seed1 = rinit1.Integer(numeric_limits<int>::max());
132 seed2 = rinit2.Integer(numeric_limits<int>::max());
133 }
134 cout<<"Initial RND seeds for G4 core are: " << seed1<<" , " << seed2<<endl;
135 TString command = "/random/setSeeds ";
136 command += seed1;
137 command += " ";
138 command += seed2;
139 ((TGeant4*)gMC)->ProcessGeantCommand(command);
140 }
141
142 /*seting tmp directory to save status of random gen if any*/
143 if( omg->DoWriteRandom() ){
144 ((TGeant4*)gMC)->ProcessGeantCommand("/random/setDirectoryName "+tmpseeddir);
145 }
146
147
148 Double_t x,y,z,theta,phi,momentum;
149 Int_t id,pdg;
150 Double_t xl, yl, zl, xh, yh, zh, tl, th, pl, ph;
151 Int_t nev_max = omg->GetEvMax();
152
153
154 //* if I have to read primary kinematics from a file do it *//
155 TFile* rfin = NULL;
156 TTree* primtree = NULL;
157 TClonesArray * prims = NULL;
158 PamVMCPrimary *p = NULL;
159 if ( omg->GetReadPrimMode() ){
160 rfin = new TFile ( omg->GetReadPrimPath(), "read");
161 primtree = (TTree*) rfin->Get("hits");
162 if(!primtree) cout<<"ERROR: tree 'hits' with primaries kinematics not found"<<endl;
163 primtree->SetBranchAddress("PRIM", &prims);
164 nev_max = primtree->GetEntries();
165 }
166
167 cout<<"OK1"<<endl;
168
169 //MAIN LOOP
170 Int_t proc_ev = 0;
171 Int_t accept_ev = 0;
172 Int_t trig_ev = 0;
173 Bool_t stop = kFALSE;
174 TRandom3 * aux_rnd = new TRandom3(0);
175 PamVMCPrimaryGenerator* gpr = appl->GetPrimaryGenerator();
176 gpr->SetRandom(aux_rnd);
177
178 //gObjectTable->Print();
179 gSystem->Exec(" ps aux | grep PamVMC.exe" );
180 while (!stop){
181
182
183 if ( omg->GetReadPrimMode() ){
184 //read kinematics from file
185 rfin->cd();
186 primtree->GetEntry(proc_ev);
187 p = (PamVMCPrimary*)prims->At(0);
188 x = p->fX0;
189 y = p->fY0;
190 z = p->fZ0;
191 theta = p->fTHETA;
192 phi = p->fPHI;
193 pdg = p->fPDG;
194 momentum = p->fP0;
195 id = p->fID;
196
197
198 gpr->SetParticle(pdg);
199 gpr->SetParticleID(id);
200 gpr->SetDirection(theta,phi);
201 gpr->SetMomentum(momentum);
202 gpr->SetPosition(x,y,z);
203
204 } else {
205 //generate kinematics
206
207 pdg = omg->GetPrimPDG();
208 id = proc_ev;
209 gpr->SetParticle(pdg);
210 gpr->SetParticleID(id);
211
212 //generate spatial distribution
213 if( omg->IsCustomKinematics() ){
214 //vertex
215 if( omg->IsBoxVertex() ){
216 //box
217 omg->GetBoxVertex(xl,xh,yl,yh,zl,zh);
218 gpr->GenPosition(xl, xh, yl, yh, zl, zh);
219 } else {
220 //point
221 omg->GetFixedPointVertex(x,y,z);
222 gpr->SetPosition(x,y,z);
223 }
224 //angles
225 if( omg->IsIsotropicPlane() ){
226 //isoplane angles
227 omg->GetIsotropicAngles(tl, th, pl, ph);
228 gpr->GenDirection(tl, th, pl, ph);
229 } else {
230 //fixed angles
231 omg->GetFixedAngles(theta, phi);
232 gpr->SetDirection(theta,phi);
233 }
234 } else {
235 // GOD mode
236 gpr->Gen2PiPosAng();
237 }
238 gpr->GetPosition(x,y,z);
239 gpr->GetDirection(theta, phi);
240
241
242 //generate MOMENTUM
243 Momentum_units mu = omg->GetPrimMomUnits();
244 if( omg->GetPrimMomMode() == FIXED ){
245 momentum = omg->GetMomFixed();
246
247 switch (mu){
248 case GeV_T:
249 gpr->SetMomentum(gpr->KinEToMomentum(momentum));
250 break;
251 case GV_p:
252 gpr->SetMomentum(momentum);
253 case GV_R:
254 gpr->SetMomentum( gpr->RigToMomentum(momentum));
255 default:
256 break;
257 }
258
259 }
260 if( omg->GetPrimMomMode() == FLAT ){
261 Double_t m1, m2;
262 omg->GetMomLimits(m1,m2);
263 switch (mu){
264 case GeV_T:
265 gpr->GenSpe( m1, m2, kTRUE);
266 break;
267 case GV_p:
268 gpr->GenSpe( m1, m2, kFALSE);
269 case GV_R:
270 gpr->GenSpe( gpr->RigToMomentum(m1), gpr->RigToMomentum(m2), kFALSE);
271 default:
272 break;
273 }
274
275 }
276 if( omg->GetPrimMomMode() == POWERLAW ){
277 Double_t m1, m2;
278 omg->GetMomLimits(m1,m2);
279 Double_t gamma = omg->GetMomGamma();
280 switch (mu){
281 case GeV_T:
282 gpr->GenSpe( m1, m2, gamma, kTRUE);
283 break;
284 case GV_p:
285 gpr->GenSpe( m1, m2, gamma, kFALSE);
286 case GV_R:
287 gpr->GenSpe( gpr->RigToMomentum(m1), gamma, gpr->RigToMomentum(m2), kFALSE);
288 default:
289 break;
290 }
291 }
292
293 }
294
295 /*if (DEBUG){
296 cout<<"EVENT: "<<proc_ev<<endl;
297 cout<<"ID: "<<id<<endl;
298 cout<<"PDG:"<<pdg<<endl
299 <<"X0: "<<x<<" (cm)"<<endl
300 <<"Y0: "<<y<<" (cm)"<<endl
301 <<"Z0: "<<z<<" (cm)"<<endl
302 <<"Theta:"<<theta*180./TMath::Pi()<<" (deg)"<<endl
303 <<"Phi:"<<phi*180./TMath::Pi()<<" (deg)"<<endl
304 <<"Momentum: "<<momentum<<" (GV)"<<endl;
305 } */
306
307 if ( omg->IsReadRandomMode() ){
308 read_rndm_file->cd();
309 UnPackDump(tmpfile, rnd_dump);
310 TString rndfile = "/random/resetEngineFrom "+tmpfile;
311 //cout<<"reading... "<<rndfile<<endl;
312 ((TGeant4*)gMC)->ProcessGeantCommand(rndfile);
313 }
314
315 if( omg->DoWriteRandom() ){
316 //cout<<"saving RND"<<endl;
317 ((TGeant4*)gMC)->ProcessGeantCommand("/random/setSavingFlag 1");
318 }
319
320 /////RUN///////
321 appl->RunMC(1);
322 /////////////
323 proc_ev ++;
324 accept_ev = gpr->GetNgood();
325 if (appl->GetTrigger()) trig_ev++;
326
327 if(DEBUG){
328 cout<<"TOT_EV: "<<proc_ev<<" TRIG_EV: "<<trig_ev<<" ACCEPT_EV:"<<accept_ev<<endl;
329 }
330 //gObjectTable->Print();
331
332 //saving dumps if any
333 if( omg->DoWriteRandom() ){
334 switch( omg->GetSaveCond() ){
335 case EVERYTHING:
336 dmp_file->cd();
337 PackDump(tmpseeddir+"/currentEvent.rndm", ev_dump);
338 save_ev = id;
339 t_dump->Fill();
340 break;
341 case TRIG_ONLY:
342 if(appl->GetTrigger()){
343 dmp_file->cd();
344 PackDump(tmpseeddir+"/currentEvent.rndm", ev_dump);
345 save_ev = id;
346 t_dump->Fill();
347 }
348 break;
349 case ACCEPT_ONLY:
350 if(gpr->Getgood()){
351 dmp_file->cd();
352 PackDump(tmpseeddir+"/currentEvent.rndm", ev_dump);
353 save_ev = id;
354 t_dump->Fill();
355 }
356 break;
357 default:
358 break;
359 }
360 }
361
362 //condition to stop
363 switch( omg->GetStopMode() ){
364 case NEV_TOT:
365 if( proc_ev >= nev_max) stop = kTRUE;
366 break;
367 case NEV_ACCEPT:
368 if( accept_ev >= nev_max) stop = kTRUE;
369 break;
370 case NEV_TRIGG:
371 if( trig_ev >= nev_max) stop = kTRUE;
372 break;
373 default:
374 break;
375 }
376
377 if( (omg->GetReadPrimMode()) && ( proc_ev >= nev_max) ) stop = kTRUE;
378
379 //gSystem->Exec(" ps aux | grep PamVMC.exe" );
380 }
381 gSystem->Exec(" ps aux | grep PamVMC.exe" );
382
383
384 appl->FinishRun();
385 if( omg->DoWriteRandom() ){
386 dmp_file->cd();
387 t_dump->Write();
388 dmp_file->Close();
389 }
390
391 cout<<"done...."<<endl;
392
393 if( read_rndm_file ) read_rndm_file->Close();
394 delete read_rndm_file;
395 delete appl;
396
397 //delete tmp directory with dumps
398 gSystem->Exec("rm -rf "+tmpseeddir);
399
400 //moving good files to good directory
401 if( omg->IsUseCookie() ){
402 TString source_dir = working_path;
403 TString dest_path = omg->GetOutPath();
404 TString out_root_fname = omg->GetOutPattern()+".root";
405 TString out_pam_fname = omg->GetOutPattern()+".pam";
406 TString out_dump_fname = omg->GetRandomOutFilename();
407
408 cout<<"--->Move "<<source_dir<<"/"<<out_root_fname<<" to "<< dest_path<<endl;
409 gSystem->Exec("mv " + source_dir+"/"+out_root_fname + " " + dest_path +"/");
410 cout<<"--->Move "<<source_dir<<"/"<<out_pam_fname<<" to "<< dest_path<<endl;
411 gSystem->Exec("mv " + source_dir+"/"+out_pam_fname + " " + dest_path +"/");
412 if( omg->DoWriteRandom() ){
413 cout<<"--->Move "<<out_dump_fname<<" to "<< dest_path<<endl;
414 gSystem->Exec("mv " + out_dump_fname + " " + dest_path +"/");
415 }
416 cout<<"->Cleaning up tmpdir: "<<source_dir<<endl;
417 gSystem->Exec("cd "+dest_path);
418 gSystem->Exec("rm -rf " + source_dir );
419 }
420 return 0;
421 }
422
423
424 void PackDump(TString path, TObjString* os){
425
426 ifstream ffile;
427 ffile.open(path.Data(), ios::binary);
428 if(!ffile) {
429 cout<<"ERROR! wrong filename: "<<path<<endl;
430 return;
431 }
432
433 // get length of file:
434 ffile.seekg (0, ios::end);
435 Int_t length = ffile.tellg();
436 ffile.seekg (0, ios::beg);
437
438 // allocate memory:
439 char* buffer = new char [length];
440
441 // read data as a block:
442 ffile.read (buffer,length);
443 ffile.close();
444
445 os->SetString(buffer);
446
447 delete[] buffer;
448 }
449
450 void UnPackDump(TString path, TObjString* os){
451
452 ofstream ffile;
453 ffile.open(path.Data(), ios::binary);
454 if(!ffile) {
455 cout<<"ERROR! wrong filename: "<<path<<endl;
456 return;
457 }
458
459 // get length of file:
460 Int_t length = os->Sizeof();
461
462 // allocate memory:
463 const char* buffer = 0;
464
465 TString tmp = os->GetString();
466 buffer = tmp.Data();
467
468 // read data as a block:
469 ffile.write (buffer,length-1);
470
471 cout<<"->Unpack"<<endl;
472 ffile.close();
473 }

  ViewVC Help
Powered by ViewVC 1.1.23