Skip to content

Commit 721739d

Browse files
committed
remove the only-high-stat effic plots which are not used seriously
1 parent b23f2ca commit 721739d

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

Validation/RPCRecHits/src/RPCRecHitValidClient.cc

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,6 @@ void RPCRecHitValidClient::dqmEndJob(DQMStore::IBooker &booker, DQMStore::IGette
1919
booker.book1D("RollEfficiencyBarrel_eff", "Roll efficiency in Barrel;Efficiency [%]", 50 + 2, -2, 100 + 2);
2020
MEP me_rollEfficiencyEndcap_eff =
2121
booker.book1D("RollEfficiencyEndcap_eff", "Roll efficiency in Endcap;Efficiency [%]", 50 + 2, -2, 100 + 2);
22-
MEP me_rollEfficiencyStatCutOffBarrel_eff =
23-
booker.book1D("RollEfficiencyCutOffBarrel_eff",
24-
"Roll efficiency in Barrel without low stat chamber;Efficiency [%]",
25-
50 + 2,
26-
-2,
27-
100 + 2);
28-
MEP me_rollEfficiencyStatCutOffEndcap_eff =
29-
booker.book1D("RollEfficiencyCutOffEndcap_eff",
30-
"Roll efficiency in Endcap without low stat chamber;Efficiency [%]",
31-
50 + 2,
32-
-2,
33-
100 + 2);
3422

3523
const double maxNoise = 1e-7;
3624
MEP me_rollNoiseBarrel_noise = booker.book1D("RollNoiseBarrel_noise",
@@ -60,8 +48,6 @@ void RPCRecHitValidClient::dqmEndJob(DQMStore::IBooker &booker, DQMStore::IGette
6048
const double eff = nRef ? nRec / nRef * 100 : -1;
6149

6250
me_rollEfficiencyBarrel_eff->Fill(eff);
63-
if (nRef >= 20)
64-
me_rollEfficiencyStatCutOffBarrel_eff->Fill(eff);
6551
}
6652
}
6753

@@ -76,8 +62,6 @@ void RPCRecHitValidClient::dqmEndJob(DQMStore::IBooker &booker, DQMStore::IGette
7662
const double eff = nRef ? nRec / nRef * 100 : -1;
7763

7864
me_rollEfficiencyEndcap_eff->Fill(eff);
79-
if (nRef >= 20)
80-
me_rollEfficiencyStatCutOffEndcap_eff->Fill(eff);
8165
}
8266
}
8367

0 commit comments

Comments
 (0)