ATLAS Offline Software
Loading...
Searching...
No Matches
MeasurementDefs.cxx
Go to the documentation of this file.
1
2/*
3 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
4*/
6
7namespace xAOD{
8 std::string toString(const UncalibMeasType type) {
9 switch (type){
10 using enum UncalibMeasType;
11 case Other: return "Other";
12 case PixelClusterType: return "PixelClusterType";
13 case StripClusterType: return "StripClusterType";
14 case MdtDriftCircleType: return "MdtDriftCircleType";
15 case RpcStripType: return "RpcStripType";
16 case TgcStripType: return "TgcStripType";
17 case MMClusterType: return "MMClusterType";
18 case sTgcStripType: return "sTgcStripType";
19 case HGTDClusterType: return "HGTDClusterType";
20 case nTypes: return "nTypes";
21 }
22 return "unknown";
23 }
24}
ICaloAffectedTool is abstract interface for tools checking if 4 mom is in calo affected region.
UncalibMeasType
Define the type of the uncalibrated measurement.
std::string toString(const UncalibMeasType type)
Convert the measurement enum to a string.