00001 import FWCore.ParameterSet.Config as cms 00002 00003 ecalURecHitHists = cms.EDFilter("EcalURecHitHists", 00004 EBDigiCollection = cms.InputTag("ecalEBunpacker","ebDigis"), 00005 EcalUncalibratedRecHitCollection = cms.InputTag("ecalUncalibHit","EcalUncalibRecHitsEB"), 00006 # use hash index to mask channels 00007 # add a simple description of hashIndex (hhahhahhh...) 00008 maskedChannels = cms.untracked.vint32(), 00009 # masked FEDs 00010 #untracked vint32 maskedFEDs = {-1} 00011 # masked EBids 00012 #untracked vstring maskedEBs = {"-1"} 00013 # parameter to specify histogram maxmimum range 00014 #untracked double histogramMaxRange = 200.0 00015 # parameter to specify histogram minimum range 00016 #untracked double histogramMinRange = -10.0 00017 # parameter for the name of the output root file with TH1F 00018 fileName = cms.untracked.string('ecalURecHitHists') 00019 ) 00020 00021