ATLAS Offline Software
Loading...
Searching...
No Matches
IConditionsStorage.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7// MuonCalibIdentifier
9
10namespace MuonCalib {
11
13 MuonFixedId id(id_num);
14 ml = id.mdtMultilayer();
15 ly = id.mdtTubeLayer();
16 tb = id.mdtTube();
17 }
18
20 if (ml < other.ml) return true;
21 if (ml > other.ml) return false;
22 if (ly < other.ly) return true;
23 if (ly > other.ly) return false;
24 if (tb < other.tb) return true;
25 return false;
26 }
27
29 if (ml > other.ml) return true;
30 if (ml < other.ml) return false;
31 if (ly > other.ly) return true;
32 if (ly < other.ly) return false;
33 if (tb > other.tb) return true;
34 return false;
35 }
36
37} // namespace MuonCalib
bool operator>(const TubeId &other) const
bool operator<(const TubeId &other) const
Implements fixed identifiers not dependent upon Athena Identifier for internal use in the calibration...
Definition MuonFixedId.h:50
CscCalcPed - algorithm that finds the Cathode Strip Chamber pedestals from an RDO.