// $Id$ // // #define VERBOSEARGS // simrun.C // // Set job and simulation variables as : // root.exe -b -q simrun.C --run <x> --event <y> --process <kPythia6/kPhojet/kPythia6ATLAS_Flat/kPythia6D6T> --field <kNoField/k5kG> --energy <900/2360/10000> --physicslist <QGSP_BERT_CHIPS/CHIPS/QGSP_BERT_EMV> // // For production test: // root.exe -b -q simrun.C --run 126007 --event 1 --process kPythiaPerugia0 --field k5kG --energy 7000 --physicslist FTFP_BERT_EMV_OPTICAL // // By E. Sicking, CERN { int nrun = 0; int nevent = 0; int seed = 0; char sseed[1024]; char srun[1024]; char sevent[1024]; char sprocess[1024]; char sfield[1024]; char senergy[1024]; char sphysicslist[1024]; sprintf(srun,""); sprintf(sevent,""); sprintf(sprocess,""); sprintf(sfield,""); sprintf(senergy,""); sprintf(sphysicslist,""); for (int i=0; i< gApplication->Argc();i++){ #ifdef VERBOSEARGS printf("Arg %d: %s\n",i,gApplication->Argv(i)); #endif if (!(strcmp(gApplication->Argv(i),"--run"))) nrun = atoi(gApplication->Argv(i+1)); sprintf(srun,"%d",nrun); if (!(strcmp(gApplication->Argv(i),"--event"))) nevent = atoi(gApplication->Argv(i+1)); sprintf(sevent,"%d",nevent); if (!(strcmp(gApplication->Argv(i),"--process"))) sprintf(sprocess, gApplication->Argv(i+1)); if (!(strcmp(gApplication->Argv(i),"--field"))) sprintf(sfield,gApplication->Argv(i+1)); if (!(strcmp(gApplication->Argv(i),"--energy"))) sprintf(senergy,gApplication->Argv(i+1)); if (!(strcmp(gApplication->Argv(i),"--physicslist"))) sprintf(sphysicslist,gApplication->Argv(i+1)); } seed = nrun * 100000 + nevent; //seed = nrun + nevent; // LHC10c9 production test sprintf(sseed,"%d",seed); if (seed==0) { fprintf(stderr,"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"); fprintf(stderr,"!!!! WARNING! Seeding variable for MC is 0 !!!!\n"); fprintf(stderr,"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"); } else { fprintf(stdout,"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"); fprintf(stdout,"!!! MC Seed is %d \n",seed); fprintf(stdout,"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"); } // set the seed environment variable gSystem->Setenv("CONFIG_SEED",sseed); gSystem->Setenv("CONFIG_RUN_TYPE",sprocess); // kPythia6 or kPhojet gSystem->Setenv("CONFIG_FIELD",sfield); // kNoField or k5kG gSystem->Setenv("CONFIG_ENERGY",senergy); // 900 or 10000 (GeV) gSystem->Setenv("CONFIG_PHYSICSLIST",sphysicslist); // "QGSP_BERT_EMV", "CHIPS", "QGSP_BERT_CHIPS", // also plus "_OPTICAL" to the 3 names gSystem->Setenv("DC_RUN",srun); // Not used in Config.C gSystem->Setenv("DC_EVENT",sevent); // Not used in Config.C // Needed to produce simulated RAW data gSystem->Setenv("ALIMDC_RAWDB1","./mdc1"); gSystem->Setenv("ALIMDC_RAWDB2","./mdc2"); gSystem->Setenv("ALIMDC_TAGDB","./mdc1/tag"); gSystem->Setenv("ALIMDC_RUNDB","./mdc1/meta"); cout<< "SIMRUN:: Run " << gSystem->Getenv("DC_RUN") << " Event " << gSystem->Getenv("DC_EVENT") << " Generator " << gSystem->Getenv("CONFIG_RUN_TYPE") << " Field " << gSystem->Getenv("CONFIG_FIELD") << " Energy " << gSystem->Getenv("CONFIG_ENERGY") << " Physics list " << gSystem->Getenv("CONFIG_PHYSICSLIST") << endl; cout<<">>>>> SIMULATION <<<<<"<<endl; gSystem->Exec("aliroot -b -q sim.C > sim.log 2>&1"); gSystem->Exec("mv syswatch.log simwatch.log"); cout<<">>>>> RECONSTRUCTION <<<<<"<<endl; gSystem->Exec("aliroot -b -q rec.C > rec.log 2>&1"); // gSystem->Exec("mv syswatch.log recwatch.log"); // cout<<">>>>> TAG <<<<<"<<endl; // gSystem->Exec("aliroot -b -q tag.C > tag.log 2>&1"); // cout<<">>>>> CHECK ESD <<<<<"<<endl; // gSystem->Exec("aliroot -b -q CheckESD.C > check.log 2>&1"); // cout<<">>>>> AOD <<<<<"<<endl; // gSystem->Exec("aliroot -b -q CreateAODfromESD.C > aod.log 2>&1"); }