//============================================================== // // Job options file for Geant4 Simulations // //============================================================== #include "$ATHENACOMMONROOT/share/Atlas_Gen.UnixStandardJob.txt" #include "$NOVACNVSVCROOT/share/NovaCnvSvc_jobOptions.txt" #include "$NOVACONVERTERSROOT/share/NovaConverters_jobOptions.txt" #include "jobOptions.G4Svc.txt" ApplicationMgr.DLLs += { "SingleParticleGun"}; ApplicationMgr.TopAlg = { "SingleParticleGun" , "G4SimAlg" }; //-------------------------------------------------------------- // Event related parameters //-------------------------------------------------------------- // Number of events to be processed (default is 10) ApplicationMgr.EvtMax = 2; //------------------------------------------------------------- // Configure algorithms and services //------------------------------------------------------------- // G4Svc // ----- G4Svc.PhysicsList = "none"; G4Svc.SaveHits = false; G4Svc.Visualize = true; G4Svc.RunVerbosity = 2; G4Svc.EventVerbosity = 0; G4Svc.TrackingVerbosity = 0; G4Svc.Listener = false; //G4Svc.FADSMacro = "atlas_envelopes.mac"; // SingleParticleGun // ----------------- SingleParticleGun.PdgCode=11; // Private Application Configuration options // // OUTPUT PRINTOUT LEVEL // Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL ) // you can override this for individual modules if necessary MessageSvc.OutputLevel = 1; //fatal ApplicationMgr.DLLs += { "SctSensorSD"}; SctSensorSD.OutputLevel = 1; //--------------------------------------------------------------