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

minbiasana = cms.EDAnalyzer("Analyzer_minbias",
                            HistOutFile = cms.untracked.string('analysis_minbias.root'),
                            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)
                            )