Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import FWCore.ParameterSet.Config as cms

AnalyzerMinbias  = cms.EDAnalyzer("AnalyzerMinbias",                         
                                  hbheInputMB    = cms.InputTag("hbherecoMB"),
                                  hoInputMB      = cms.InputTag("horecoMB"),
                                  hfInputMB      = cms.InputTag("hfrecoMB"),
                                  hbheInputNoise = cms.InputTag("hbherecoNoise"),
                                  hoInputNoise   = cms.InputTag("horecoNoise"),
                                  hfInputNoise   = cms.InputTag("hfrecoNoise"),
                                  Recalib        = cms.bool(False),
                                  IgnoreL1       = cms.untracked.bool(True),
                                  RunNZS         = cms.untracked.bool(False),
                                  HistOutFile    = cms.untracked.string('analysis_minbias.root'),           
                                  )