Skip to content

Commit 6c7e59e

Browse files
committed
move HGCalHitCalibrationHLT from top folder to inside HLT foder
1 parent 79f5b6e commit 6c7e59e

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

HLTriggerOffline/Common/python/HLTValidation_cff.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@
2020

2121
# HGCAL Rechit Calibration
2222
from Validation.HGCalValidation.hgcalHitCalibrationDefault_cfi import hgcalHitCalibrationDefault as _hgcalHitCalibrationDefault
23-
hgcalHitCalibrationHLT = _hgcalHitCalibrationDefault.clone()
24-
hgcalHitCalibrationHLT.folder = "HGCalHitCalibrationHLT"
25-
hgcalHitCalibrationHLT.recHitsEE = cms.InputTag("hltHGCalRecHit", "HGCEERecHits", "HLT")
26-
hgcalHitCalibrationHLT.recHitsFH = cms.InputTag("hltHGCalRecHit", "HGCHEFRecHits", "HLT")
27-
hgcalHitCalibrationHLT.recHitsBH = cms.InputTag("hltHGCalRecHit", "HGCHEBRecHits", "HLT")
28-
hgcalHitCalibrationHLT.hgcalMultiClusters = cms.InputTag("None")
29-
hgcalHitCalibrationHLT.electrons = cms.InputTag("None")
30-
hgcalHitCalibrationHLT.photons = cms.InputTag("None")
23+
hgcalHitCalibrationHLT = _hgcalHitCalibrationDefault.clone(
24+
folder = "HLT/HGCalHitCalibration",
25+
recHitsEE = ("hltHGCalRecHit", "HGCEERecHits", "HLT"),
26+
recHitsFH = ("hltHGCalRecHit", "HGCHEFRecHits", "HLT"),
27+
recHitsBH = ("hltHGCalRecHit", "HGCHEBRecHits", "HLT"),
28+
hgcalMultiClusters = "None",
29+
electrons = "None",
30+
photons = "None"
31+
)
3132

3233
# offline dqm:
3334
# from DQMOffline.Trigger.DQMOffline_Trigger_cff.py import *

0 commit comments

Comments
 (0)