//##############################################################
// Example Job options file
//==============================================================
ApplicationMgr.DLLs = {"GaudiAlg", "GaudiAud", "HelloWorldGaudi"};
ApplicationMgr.ExtSvc = { "EventSelector" };
AuditorSvc.Auditors = { "ChronoAuditor" };
//--------------------------------------------------------------
// Private Application Configuration options
//--------------------------------------------------------------
ApplicationMgr.TopAlg = { "HelloWorld" };
// Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL )
MessageSvc.OutputLevel = 3;
//--------------------------------------------------------------
// Event related parameters
//--------------------------------------------------------------
ApplicationMgr.EvtMax = 10; // events to be processed (default is 10)
ApplicationMgr.EvtSel = "NONE"; // do not use any event input
HelloWorld.OutputLevel = 2;
|