ATLAS Offline Software
Loading...
Searching...
No Matches
TrackCommonFlags.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5
7// //
8// Implementation of class TrackCommonFlags //
9// //
10// Author: Thomas H. Kittelmann (Thomas.Kittelmann@cern.ch) //
11// Initial version: March 2008 //
12// //
14
16
17//____________________________________________________________________
19{
20 switch (sm) {
21 case SINGLEOBJECT: return "SINGLEOBJECT";
22 case MULTITRACK: return "MULTITRACK";
23 case TRACKFIT: return "TRACKFIT";
24 default: return "Unknown (ERROR)";
25 }
26}
27
29{
30 switch (sm) {
31 case FROMPRDS: return "FROMPRDS";
32 case REFITSINGLETRACK: return "REFITSINGLETRACK";
33 case EXTENDTRACKWITHPRDS: return "EXTENDTRACKWITHPRDS";
34 case COMBINETWOTRACKS: return "COMBINETWOTRACKS";
35 default: return "Unknown (ERROR)";
36 }
37}
38
39
40//____________________________________________________________________
42{
43 switch (dl) {
44 case AUTO: return "AUTO";
45 case SIMPLE: return "SIMPLE";
46 case DETAILED: return "DETAILED";
47 default: return "Unknown (ERROR)";
48 }
49}
static QString toString(const SELECTIONMODE &)