void sim2(Int_t nevt=1) { //Simulation spets are performet all together //Set debug level to 1 in RSTACK module //IlcLog::SetModuleDebugLevel("RSTACK",1); IlcSimulation simulator; TStopwatch timer; timer.Start(); //Select detectors to SDigitize simulator.SetMakeSDigits("TARGET RSTACK"); //Select detectors to Digitize simulator.SetMakeDigits("TARGET RSTACK"); //Perform Hits+SDigits+Digits simulation simulator.Run(nevt); //Export geometry to be used for tracks reconstruction gGeoManager->Export("geometry.root"); timer.Stop(); timer.Print(); }
void sim(Int_t embrun) { IlcSimulation sim; if (embrun == 4) { IlcCDBManager *cdbm = IlcCDBManager::Instance(); cdbm->SetRun(atoi(gSystem->Getenv("DC_RUN"))); cdbm->SetDefaultStorage("local://$ILC_ROOT/OCDB"); cdbm->SetSpecificStorage("GRP/GRP/Data",Form("local://%s",gSystem->pwd())); sim.SetMakeSDigits("ITS TPC TRD TOF VZERO"); sim.ConvertRaw2SDigits("raw.root","IlcESDs.root"); return; } if (embrun == 2) { sim.SetRunGeneration(kFALSE); sim.SetMakeSDigits(""); sim.SetMakeDigitsFromHits(""); } else { sim.SetRunGeneration(kTRUE); sim.SetMakeSDigits("ITS TPC TRD TOF VZERO"); } sim.SetRunSimulation(kTRUE); sim.SetMakeDigits("ITS TPC TRD TOF VZERO"); sim.SetWriteRawData("ITS TPC TRD TOF VZERO","raw.root",kTRUE); if (embrun == 1) sim.MergeWith("../BackgroundSDigits/gilc.root",1); sim.SetDefaultStorage("local://$ILC_ROOT/OCDB"); sim.SetSpecificStorage("GRP/GRP/Data", Form("local://%s",gSystem->pwd())); sim.SetRunQA(":") ; IlcQA::SetQARefStorage("local://$ILC_ROOT/OCDB") ; for (Int_t det = 0 ; det < IlcQA::kNDET ; det++) { sim.SetQACycles(det, 1) ; } // sim.SetDefaultStorage("alien://Folder=/ilc/simulation/2008/v4-15-Release/Full/"); // sim.SetRunHLT(""); // sim.SetQA(kFALSE); sim.Run(1); }