//////////////////////////////////////////////////////////////// // Example options file. //////////////////////////////////////////////////////////////// // Include standard option files #include "Common.opts" //-------------------------------------------------------------- // Private Application Configuration options //-------------------------------------------------------------- ApplicationMgr.ExtSvc += { "DbEventCnvSvc/RootEvtCnvSvc" }; ApplicationMgr.OutStream = { "RootDst" }; ApplicationMgr.TopAlg = { "WriteAlg" }; // Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL ) MessageSvc.OutputLevel = 1; //-------------------------------------------------------------- // Event related parameters //-------------------------------------------------------------- ApplicationMgr.EvtMax = 10; // events to be processed (default is 10) ApplicationMgr.EvtSel = "NONE"; // do not use any event input ApplicationMgr.HistogramPersistency = "NONE"; //-------------------------------------------------------------- // Persistency service setup: //-------------------------------------------------------------- EventPersistencySvc.CnvServices += { "RootEvtCnvSvc" }; //-------------------------------------------------------------- // Output Stream Options //-------------------------------------------------------------- // // Setup for ROOT I/O System // RootDst.ItemList = { "/Event#999" }; RootDst.Output = "DATAFILE='RootDst.root' TYP='ROOT' OPT='RECREATE'"; RootEvtCnvSvc.DbType = "ROOT";