Variables | |
tuple | buildTraintree |
00001 cms.EDAnalyzer("TtFullHadSignalSelMVATrainer", 00002 #input tags used in the example 00003 jets = cms.InputTag("selectedPatJets"), 00004 00005 #three possibilities: 00006 # whatData=-1: in your training-file both, signal and background events are available 00007 # whatData=1: your training-file contains only signal events 00008 # whatData=0: your training-file contains only background events 00009 whatData = cms.int32(1), 00010 00011 #maximum number of training events to be used 00012 # maxEv = -1: all events are used 00013 # for example maxEv = 5000: writes only the first 5000 events to the training tree 00014 maxEv = cms.int32(-1), 00015 #event weight to be put here: 00016 # standard is set to 1, so no weight is applied 00017 # for example if different samples with different integrated luminosities have to be combined 00018 weight = cms.double(1.0) 00019 )
Definition at line 6 of file TtFullHadSignalSelMVATrainer_cfi.py.