Functions | |
def | configure |
Variables | |
string | __author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr' |
SUCCESS = GaudiPython.SUCCESS | |
tuple | gaudi = GaudiPython.AppMgr( joboptions = 'GaudiPoolDbRoot.opts' ) |
def EvtColRead::configure | ( | gaudi = None |
) |
Configuration of the job
Definition at line 24 of file EvtColRead.py.
00024 : 00025 """ Configuration of the job """ 00026 00027 gaudi.HistogramPersistency = 'ROOT' 00028 00029 gaudi.DLLs += [ 'GaudiAlg' , 'RootHistCnv', ] 00030 gaudi.ExtSvc += [ 'TagCollectionSvc/EvtTupleSvc' ] 00031 00032 gaudi.service('FileCatalog').Catalogs += ['xmlcatalog_file:EvtColsEx.xml'] 00033 00034 evtSel = gaudi.evtSel() 00035 evtSel.open( 'PFN:EvtTags1.root' , 00036 collection = 'Fill/COL1' , 00037 sel = 'binom==6' ) 00038 00039 gaudi.config() 00040 00041 return SUCCESS 00042 00043 00044 # ============================================================================= 00045 # The actual job excution 00046 # ============================================================================= if '__main__' == __name__ :
string EvtColRead::__author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr' [static] |
Definition at line 14 of file EvtColRead.py.
EvtColRead::SUCCESS = GaudiPython.SUCCESS [static] |
Definition at line 19 of file EvtColRead.py.
tuple EvtColRead::gaudi = GaudiPython.AppMgr( joboptions = 'GaudiPoolDbRoot.opts' ) [static] |
Definition at line 49 of file EvtColRead.py.