Variables | |
tuple | buildTraintree |
00001 cms.EDAnalyzer("TtSemiLepSignalSelMVATrainer", 00002 #input tags used in the example 00003 muons = cms.InputTag("selectedPatMuons"), 00004 elecs = cms.InputTag("selectedPatElectrons"), 00005 jets = cms.InputTag("selectedPatJets"), 00006 mets = cms.InputTag("patMETs"), 00007 00008 # ------------------------------------------------ 00009 # select semileptonic signal channel 00010 # (all others are taken as background for training) 00011 # 1: electron, 2: muon, 3: tau 00012 # ------------------------------------------------ 00013 lepChannel = cms.int32(2), 00014 00015 #three possibilities: 00016 # whatData=-1: in your training-file both, signal and background events are available 00017 # whatData=1: your training-file contains only signal events 00018 # whatData=0: your training-file contains only background events 00019 whatData = cms.int32(1), 00020 00021 #maximum number of training events to be used 00022 # maxEv = -1: all events are used 00023 # for example maxEv = 5000: writes only the first 5000 events to the training tree 00024 maxEv = cms.int32(-1), 00025 )
Definition at line 6 of file TtSemiLepSignalSelMVATrainer_cfi.py.