Skip to content

Commit 8e27618

Browse files
authored
Merge pull request #45626 from slowmoyang/UpdateRPCRecHits_from-CMSSW_14_1_0_pre6
Update validation for RPC hit reconstruction
2 parents 76a4f99 + d1f30af commit 8e27618

File tree

5 files changed

+29
-271
lines changed

5 files changed

+29
-271
lines changed

Validation/RPCRecHits/interface/RPCRecHitValid.h

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,12 @@ class RPCRecHitValid : public DQMEDAnalyzer {
6262
MEP h_recoMuonBarrel_phi, h_recoMuonOverlap_phi, h_recoMuonEndcap_phi, h_recoMuonNoRPC_phi;
6363
MEP h_simParticleType, h_simParticleTypeBarrel, h_simParticleTypeEndcap;
6464

65-
MEP h_refPunchOccupancyBarrel_wheel, h_refPunchOccupancyEndcap_disk, h_refPunchOccupancyBarrel_station;
66-
MEP h_refPunchOccupancyBarrel_wheel_station, h_refPunchOccupancyEndcap_disk_ring;
67-
MEP h_recPunchOccupancyBarrel_wheel, h_recPunchOccupancyEndcap_disk, h_recPunchOccupancyBarrel_station;
68-
MEP h_recPunchOccupancyBarrel_wheel_station, h_recPunchOccupancyEndcap_disk_ring;
69-
7065
MEP h_matchOccupancyBarrel_detId;
7166
MEP h_matchOccupancyEndcap_detId;
7267
MEP h_refOccupancyBarrel_detId;
7368
MEP h_refOccupancyEndcap_detId;
74-
MEP h_noiseOccupancyBarrel_detId;
75-
MEP h_noiseOccupancyEndcap_detId;
69+
MEP h_allOccupancyBarrel_detId;
70+
MEP h_allOccupancyEndcap_detId;
7671
MEP h_rollAreaBarrel_detId;
7772
MEP h_rollAreaEndcap_detId;
7873

Validation/RPCRecHits/python/postValidation_cfi.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33

44
def efficSet(nameIn, titleIn, numeratorIn, denominatorIn, typeIn="eff"):
55
pset = cms.PSet(name=cms.untracked.string(nameIn),
6-
title=cms.untracked.string(titleIn),
7-
numerator=cms.untracked.string(numeratorIn),
6+
title=cms.untracked.string(titleIn),
7+
numerator=cms.untracked.string(numeratorIn),
88
denominator=cms.untracked.string(denominatorIn),
99
type=cms.untracked.string(typeIn))
1010
return pset
1111

1212
rpcRecHitSimRecoClient = DQMEDHarvester("RPCRecHitValidClient",
13-
subDir = cms.string("RPC/RPCRecHitV/SimVsReco"),
13+
subDir = cms.string("RPC/RPCRecHitV"),
1414
)
1515

1616
rpcRecHitPostValidation = DQMEDHarvester("DQMGenericClient",
17-
subDirs = cms.untracked.vstring("RPC/RPCRecHitV/SimVsReco",),
17+
subDirs = cms.untracked.vstring("RPC/RPCRecHitV",),
1818
#subDirs = cms.untracked.vstring("RPC/RPCRecHitV/SimVsReco",
1919
# "RPC/RPCRecHitV/SimVsDTExt",
2020
# "RPC/RPCRecHitV/SimVsCSCExt"),

Validation/RPCRecHits/python/rpcRecHitValidation_cfi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
44
rpcRecHitV = DQMEDAnalyzer('RPCRecHitValid',
5-
subDir = cms.string("RPC/RPCRecHitV/SimVsReco"),
5+
subDir = cms.string("RPC/RPCRecHitV"),
66
simHit = cms.InputTag("g4SimHits", "MuonRPCHits"),
77
recHit = cms.InputTag("rpcRecHits"),
88
simTrack = cms.InputTag("mix", "MergedTrackTruth"),

0 commit comments

Comments
 (0)