Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:24

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMOffline.Hcal.HcalRecHitParam_cfi import *
0004 hltHCALRecHitsAnalyzer = hcalRecHitsAnalyzer.clone(
0005       TopFolderName             = 'HLT/HCAL/RecHits',
0006       HBHERecHitCollectionLabel = 'hltHbhereco',
0007       HFRecHitCollectionLabel   = 'hltHfreco',
0008       HORecHitCollectionLabel   = 'hltHoreco',
0009       EBRecHitCollectionLabel   = 'hltEcalRecHit::EcalRecHitsEB', 
0010       EERecHitCollectionLabel   = 'hltEcalRecHit::EcalRecHitsEE',
0011       eventype                  = 'multi', # ?!?
0012       ecalselector              = 'yes',   # ?!?
0013       hcalselector              = 'all',   # ?!?
0014       hep17                     = False
0015 )
0016 
0017 from Configuration.Eras.Modifier_run2_HEPlan1_2017_cff import run2_HEPlan1_2017
0018 run2_HEPlan1_2017.toModify(hltHCALRecHitsAnalyzer,
0019       hep17 = True
0020 )
0021