Skip to content

Commit bb82f39

Browse files
authored
[OMON-669] Temporary remove MCH and MID from orbit ID detection (#324)
1 parent 98d8b06 commit bb82f39

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

examples/14-OrbitId.cxx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ int main(int argc, char* argv[])
7676
if (detector.empty() or orbitId.empty()) {
7777
continue;
7878
}
79+
// Temporary disregard MCH and MID
80+
// TODO: remove
81+
if (detector == "mch" || detector == "mid") {
82+
continue;
83+
}
84+
7985
// if detector is not running
8086
auto detectorInRun = detectorRunMap.find(detector);
8187
if (detectorInRun == detectorRunMap.end()) {

0 commit comments

Comments
 (0)