ATLAS Offline Software
Public Member Functions | Private Attributes | List of all members
TileCosmicMuon Class Reference

Class containing detailed results from TileMuonFitter. More...

#include <TileCosmicMuon.h>

Collaboration diagram for TileCosmicMuon:

Public Member Functions

 TileCosmicMuon ()
 Constructor. More...
 
std::string whoami (void) const
 
 operator std::string () const
 
void SetTime (double time)
 Setters. More...
 
void SetPositionX (double posx)
 
void SetPositionY (double posy)
 
void SetPositionZ (double posz)
 
void SetDirectionPhi (double phi)
 
void SetDirectionTheta (double theta)
 
void SetFitQuality (double quality)
 
void SetFitNCells (int ncells)
 
void SetPathTop (const std::vector< double > &path)
 
void SetPathBottom (const std::vector< double > &path)
 
void SetEnergyTop (const std::vector< double > &energy)
 
void SetEnergyBottom (const std::vector< double > &energy)
 
void SetTrackCellHash (const std::vector< IdentifierHash > &cells)
 
void SetSegmentPath (const std::vector< double > &path)
 
void SetSegmentPartition (const std::vector< int > &partition)
 
void SetSegmentModule (const std::vector< int > &module)
 
void SetSegmentSampling (const std::vector< int > &sampling)
 
void SetPathTop (std::vector< double > &&path)
 
void SetPathBottom (std::vector< double > &&path)
 
void SetEnergyTop (std::vector< double > &&energy)
 
void SetEnergyBottom (std::vector< double > &&energy)
 
void SetTrackCellHash (std::vector< IdentifierHash > &&cells)
 
void SetSegmentPath (std::vector< double > &&path)
 
void SetSegmentPartition (std::vector< int > &&partition)
 
void SetSegmentModule (std::vector< int > &&module)
 
void SetSegmentSampling (std::vector< int > &&sampling)
 
double GetTime () const
 Getters. More...
 
double GetPositionX () const
 
double GetPositionY () const
 
double GetPositionZ () const
 
double GetDirectionPhi () const
 
double GetDirectionTheta () const
 
double GetFitQuality () const
 
int GetFitNCells () const
 
int GetTrackNCells () const
 
int GetNSamples () const
 
int GetNSegments () const
 
double GetPathTop (int ind) const
 
double GetPathBottom (int ind) const
 
double GetEnergyTop (int ind) const
 
double GetEnergyBottom (int ind) const
 
IdentifierHash GetTrackCellHash (int ind) const
 
double GetSegmentPath (int ind) const
 
int GetSegmentPartition (int ind) const
 
int GetSegmentModule (int ind) const
 
int GetSegmentSampling (int ind) const
 
double GetFullPath () const
 Sum up components of m_pathTop and m_pathBottom: full path in Tile. More...
 
double GetFullEnergy () const
 Sum up components of m_energyTop and m_energyBottom: full energy in track in Tile. More...
 

Private Attributes

double m_time
 Time of track at selected plane (y=0 for cosmics z=0 for beam) More...
 
double m_positionX
 X coordinate of point in track at selected plane (y=0 for cosmics z=0 for beam) More...
 
double m_positionY
 Y coordinate of point in track at selected plane (y=0 for cosmics z=0 for beam) More...
 
double m_positionZ
 Z coordinate of point in track at selected plane (y=0 for cosmics z=0 for beam) More...
 
double m_directionPhi
 Phi angle of track direction. More...
 
double m_directionTheta
 Theta angle of track direction. More...
 
double m_fitQuality
 Fit parameter: 0= no fit; (Hough) 1=fit ok; (Minuit) >0 chi-square. More...
 
int m_fitNCells
 Number of cells used in fit. More...
 
std::vector< double > m_pathTop
 Vector with length of track within Tile on top modules [0]:sampling A; [1]: BC; [2]: D. More...
 
std::vector< double > m_pathBottom
 Vector with length of track within Tile on bottom modules [0]:sampling A; [1]: BC; [2]: D. More...
 
std::vector< double > m_energyTop
 Vector with sum energy of cells close to track on top modules [0]:sampling A; [1]: BC; [2]: D. More...
 
std::vector< double > m_energyBottom
 Vector with sum energy of cells close to track on bottom modules [0]:sampling A; [1]: BC; [2]: D. More...
 
std::vector< IdentifierHashm_trackCellHash
 Vector with list of Identifier Hash of cells close to track. More...
 
std::vector< double > m_segmentPath
 Vector with length of track within Tile on a given segment. More...
 
std::vector< int > m_segmentPartition
 Vector with segment partition. More...
 
std::vector< int > m_segmentModule
 Vector with segment module. More...
 
std::vector< int > m_segmentSampling
 Vector with segment sampling. More...
 

Detailed Description

Class containing detailed results from TileMuonFitter.

Author
Jose Maneira (manei.nosp@m.ra@l.nosp@m.ip.pt) TileCosmicMuon contains the results of the TileMuonFitter (see TileCosmicAlgs package) algorithm, which is basically a straight line fit to the TileCal cell positions, useful for cosmic muons analysis (but also to beam halo muons). It contains information about the fit (a fit quality parameter and the number of cells used), the geometrical track parameters (position at the selected plane, direction angles) and derived quantities (time at the selected plane, path length in TileCal and energy along track). The selected plane is at y=0 for beamType=cosmics and z=0 for singlebeam and collisions. A list of cells close to the track is also kept.

Definition at line 34 of file TileCosmicMuon.h.

Constructor & Destructor Documentation

◆ TileCosmicMuon()

TileCosmicMuon::TileCosmicMuon ( )
inline

Constructor.

Definition at line 39 of file TileCosmicMuon.h.

39  : m_time((double)0.),
40  m_positionX((double)0.),m_positionY((double)0.),m_positionZ((double)0.),
41  m_directionPhi((double)0.),m_directionTheta((double)0.),
42  m_fitQuality((double)0.),m_fitNCells((int)0) {}

Member Function Documentation

◆ GetDirectionPhi()

double TileCosmicMuon::GetDirectionPhi ( ) const
inline

Definition at line 103 of file TileCosmicMuon.h.

103 {return m_directionPhi;}

◆ GetDirectionTheta()

double TileCosmicMuon::GetDirectionTheta ( ) const
inline

Definition at line 104 of file TileCosmicMuon.h.

104 {return m_directionTheta;}

◆ GetEnergyBottom()

double TileCosmicMuon::GetEnergyBottom ( int  ind) const
inline

Definition at line 113 of file TileCosmicMuon.h.

113 {return m_energyBottom[ind];}

◆ GetEnergyTop()

double TileCosmicMuon::GetEnergyTop ( int  ind) const
inline

Definition at line 112 of file TileCosmicMuon.h.

112 {return m_energyTop[ind];}

◆ GetFitNCells()

int TileCosmicMuon::GetFitNCells ( ) const
inline

Definition at line 106 of file TileCosmicMuon.h.

106 {return m_fitNCells;}

◆ GetFitQuality()

double TileCosmicMuon::GetFitQuality ( ) const
inline

Definition at line 105 of file TileCosmicMuon.h.

105 {return m_fitQuality;}

◆ GetFullEnergy()

double TileCosmicMuon::GetFullEnergy ( ) const

Sum up components of m_energyTop and m_energyBottom: full energy in track in Tile.

Definition at line 28 of file TileCosmicMuon.cxx.

29 {
30  double energy = 0.;
31  if (m_energyTop.size() == (unsigned int)3){
32  for (unsigned int is = 0; is<m_energyTop.size(); is++) energy += m_energyTop[is];
33  }
34  if (m_energyBottom.size() == (unsigned int)3){
35  for (unsigned int is = 0; is<m_energyBottom.size(); is++) energy += m_energyBottom[is];
36  }
37  return energy;
38 }

◆ GetFullPath()

double TileCosmicMuon::GetFullPath ( ) const

Sum up components of m_pathTop and m_pathBottom: full path in Tile.

Definition at line 16 of file TileCosmicMuon.cxx.

17 {
18  double length = 0.;
19  if (m_pathTop.size() == (unsigned int)3){
20  for (unsigned int is = 0; is<m_pathTop.size(); is++) length+=m_pathTop[is];
21  }
22  if (m_pathBottom.size() == (unsigned int)3){
23  for (unsigned int is = 0; is<m_pathBottom.size(); is++) length+=m_pathBottom[is];
24  }
25  return length;
26 }

◆ GetNSamples()

int TileCosmicMuon::GetNSamples ( ) const
inline

Definition at line 108 of file TileCosmicMuon.h.

108 {return m_pathTop.size();}

◆ GetNSegments()

int TileCosmicMuon::GetNSegments ( ) const
inline

Definition at line 109 of file TileCosmicMuon.h.

109 {return m_segmentPath.size();}

◆ GetPathBottom()

double TileCosmicMuon::GetPathBottom ( int  ind) const
inline

Definition at line 111 of file TileCosmicMuon.h.

111 {return m_pathBottom[ind];}

◆ GetPathTop()

double TileCosmicMuon::GetPathTop ( int  ind) const
inline

Definition at line 110 of file TileCosmicMuon.h.

110 {return m_pathTop[ind];}

◆ GetPositionX()

double TileCosmicMuon::GetPositionX ( ) const
inline

Definition at line 100 of file TileCosmicMuon.h.

100 {return m_positionX;}

◆ GetPositionY()

double TileCosmicMuon::GetPositionY ( ) const
inline

Definition at line 101 of file TileCosmicMuon.h.

101 {return m_positionY;}

◆ GetPositionZ()

double TileCosmicMuon::GetPositionZ ( ) const
inline

Definition at line 102 of file TileCosmicMuon.h.

102 {return m_positionZ;}

◆ GetSegmentModule()

int TileCosmicMuon::GetSegmentModule ( int  ind) const
inline

Definition at line 117 of file TileCosmicMuon.h.

117 {return m_segmentModule[ind];}

◆ GetSegmentPartition()

int TileCosmicMuon::GetSegmentPartition ( int  ind) const
inline

Definition at line 116 of file TileCosmicMuon.h.

116 {return m_segmentPartition[ind];}

◆ GetSegmentPath()

double TileCosmicMuon::GetSegmentPath ( int  ind) const
inline

Definition at line 115 of file TileCosmicMuon.h.

115 {return m_segmentPath[ind];}

◆ GetSegmentSampling()

int TileCosmicMuon::GetSegmentSampling ( int  ind) const
inline

Definition at line 118 of file TileCosmicMuon.h.

118 {return m_segmentSampling[ind];}

◆ GetTime()

double TileCosmicMuon::GetTime ( ) const
inline

Getters.

See class members description.

Definition at line 99 of file TileCosmicMuon.h.

99 {return m_time;}

◆ GetTrackCellHash()

IdentifierHash TileCosmicMuon::GetTrackCellHash ( int  ind) const
inline

Definition at line 114 of file TileCosmicMuon.h.

114 {return m_trackCellHash[ind];}

◆ GetTrackNCells()

int TileCosmicMuon::GetTrackNCells ( ) const
inline

Definition at line 107 of file TileCosmicMuon.h.

107 {return m_trackCellHash.size();}

◆ operator std::string()

TileCosmicMuon::operator std::string ( ) const

Definition at line 40 of file TileCosmicMuon.cxx.

41 {
42  std::ostringstream text(std::ostringstream::out);
43 
44  text << whoami();
45  text << " Time = " << m_time;
46  text << " PositionX = " << m_positionX;
47  text << " PositionY = " << m_positionY;
48  text << " PositionZ = " << m_positionZ;
49  text << " DirectionPhi = " << m_directionPhi;
50  text << " DirectionTheta = " << m_directionTheta;
51  text << " FitQuality = " << m_fitQuality;
52  text << " FitNCells = " << m_fitNCells;
53 
54  return text.str();
55 }

◆ SetDirectionPhi()

void TileCosmicMuon::SetDirectionPhi ( double  phi)
inline

Definition at line 54 of file TileCosmicMuon.h.

◆ SetDirectionTheta()

void TileCosmicMuon::SetDirectionTheta ( double  theta)
inline

Definition at line 55 of file TileCosmicMuon.h.

◆ SetEnergyBottom() [1/2]

void TileCosmicMuon::SetEnergyBottom ( const std::vector< double > &  energy)
inline

Definition at line 65 of file TileCosmicMuon.h.

◆ SetEnergyBottom() [2/2]

void TileCosmicMuon::SetEnergyBottom ( std::vector< double > &&  energy)
inline

Definition at line 84 of file TileCosmicMuon.h.

85  {m_energyBottom = std::move(energy);}

◆ SetEnergyTop() [1/2]

void TileCosmicMuon::SetEnergyTop ( const std::vector< double > &  energy)
inline

Definition at line 63 of file TileCosmicMuon.h.

64  {m_energyTop = energy;}

◆ SetEnergyTop() [2/2]

void TileCosmicMuon::SetEnergyTop ( std::vector< double > &&  energy)
inline

Definition at line 82 of file TileCosmicMuon.h.

83  {m_energyTop = std::move(energy);}

◆ SetFitNCells()

void TileCosmicMuon::SetFitNCells ( int  ncells)
inline

Definition at line 57 of file TileCosmicMuon.h.

57 {m_fitNCells = ncells;}

◆ SetFitQuality()

void TileCosmicMuon::SetFitQuality ( double  quality)
inline

Definition at line 56 of file TileCosmicMuon.h.

56 {m_fitQuality = quality;}

◆ SetPathBottom() [1/2]

void TileCosmicMuon::SetPathBottom ( const std::vector< double > &  path)
inline

Definition at line 61 of file TileCosmicMuon.h.

62  {m_pathBottom = path;}

◆ SetPathBottom() [2/2]

void TileCosmicMuon::SetPathBottom ( std::vector< double > &&  path)
inline

Definition at line 80 of file TileCosmicMuon.h.

81  {m_pathBottom = std::move(path);}

◆ SetPathTop() [1/2]

void TileCosmicMuon::SetPathTop ( const std::vector< double > &  path)
inline

Definition at line 59 of file TileCosmicMuon.h.

60  {m_pathTop = path;}

◆ SetPathTop() [2/2]

void TileCosmicMuon::SetPathTop ( std::vector< double > &&  path)
inline

Definition at line 78 of file TileCosmicMuon.h.

79  {m_pathTop = std::move(path);}

◆ SetPositionX()

void TileCosmicMuon::SetPositionX ( double  posx)
inline

Definition at line 51 of file TileCosmicMuon.h.

51 {m_positionX = posx;}

◆ SetPositionY()

void TileCosmicMuon::SetPositionY ( double  posy)
inline

Definition at line 52 of file TileCosmicMuon.h.

52 {m_positionY = posy;}

◆ SetPositionZ()

void TileCosmicMuon::SetPositionZ ( double  posz)
inline

Definition at line 53 of file TileCosmicMuon.h.

53 {m_positionZ = posz;}

◆ SetSegmentModule() [1/2]

void TileCosmicMuon::SetSegmentModule ( const std::vector< int > &  module)
inline

Definition at line 73 of file TileCosmicMuon.h.

◆ SetSegmentModule() [2/2]

void TileCosmicMuon::SetSegmentModule ( std::vector< int > &&  module)
inline

Definition at line 92 of file TileCosmicMuon.h.

93  {m_segmentModule = std::move(module);}

◆ SetSegmentPartition() [1/2]

void TileCosmicMuon::SetSegmentPartition ( const std::vector< int > &  partition)
inline

Definition at line 71 of file TileCosmicMuon.h.

◆ SetSegmentPartition() [2/2]

void TileCosmicMuon::SetSegmentPartition ( std::vector< int > &&  partition)
inline

Definition at line 90 of file TileCosmicMuon.h.

91  {m_segmentPartition = std::move(partition);}

◆ SetSegmentPath() [1/2]

void TileCosmicMuon::SetSegmentPath ( const std::vector< double > &  path)
inline

Definition at line 69 of file TileCosmicMuon.h.

70  {m_segmentPath = path;}

◆ SetSegmentPath() [2/2]

void TileCosmicMuon::SetSegmentPath ( std::vector< double > &&  path)
inline

Definition at line 88 of file TileCosmicMuon.h.

89  {m_segmentPath = std::move(path);}

◆ SetSegmentSampling() [1/2]

void TileCosmicMuon::SetSegmentSampling ( const std::vector< int > &  sampling)
inline

Definition at line 75 of file TileCosmicMuon.h.

76  {m_segmentSampling = sampling;}

◆ SetSegmentSampling() [2/2]

void TileCosmicMuon::SetSegmentSampling ( std::vector< int > &&  sampling)
inline

Definition at line 94 of file TileCosmicMuon.h.

95  {m_segmentSampling = std::move(sampling);}

◆ SetTime()

void TileCosmicMuon::SetTime ( double  time)
inline

Setters.

See class members description.

Definition at line 50 of file TileCosmicMuon.h.

50 {m_time = time;}

◆ SetTrackCellHash() [1/2]

void TileCosmicMuon::SetTrackCellHash ( const std::vector< IdentifierHash > &  cells)
inline

Definition at line 67 of file TileCosmicMuon.h.

◆ SetTrackCellHash() [2/2]

void TileCosmicMuon::SetTrackCellHash ( std::vector< IdentifierHash > &&  cells)
inline

Definition at line 86 of file TileCosmicMuon.h.

87  {m_trackCellHash = std::move(cells);}

◆ whoami()

std::string TileCosmicMuon::whoami ( void  ) const
inline

Definition at line 44 of file TileCosmicMuon.h.

44 { return "TileCosmicMuon"; }

Member Data Documentation

◆ m_directionPhi

double TileCosmicMuon::m_directionPhi
private

Phi angle of track direction.

Definition at line 131 of file TileCosmicMuon.h.

◆ m_directionTheta

double TileCosmicMuon::m_directionTheta
private

Theta angle of track direction.

Definition at line 132 of file TileCosmicMuon.h.

◆ m_energyBottom

std::vector<double> TileCosmicMuon::m_energyBottom
private

Vector with sum energy of cells close to track on bottom modules [0]:sampling A; [1]: BC; [2]: D.

Definition at line 143 of file TileCosmicMuon.h.

◆ m_energyTop

std::vector<double> TileCosmicMuon::m_energyTop
private

Vector with sum energy of cells close to track on top modules [0]:sampling A; [1]: BC; [2]: D.

Definition at line 141 of file TileCosmicMuon.h.

◆ m_fitNCells

int TileCosmicMuon::m_fitNCells
private

Number of cells used in fit.

Definition at line 134 of file TileCosmicMuon.h.

◆ m_fitQuality

double TileCosmicMuon::m_fitQuality
private

Fit parameter: 0= no fit; (Hough) 1=fit ok; (Minuit) >0 chi-square.

Definition at line 133 of file TileCosmicMuon.h.

◆ m_pathBottom

std::vector<double> TileCosmicMuon::m_pathBottom
private

Vector with length of track within Tile on bottom modules [0]:sampling A; [1]: BC; [2]: D.

Definition at line 139 of file TileCosmicMuon.h.

◆ m_pathTop

std::vector<double> TileCosmicMuon::m_pathTop
private

Vector with length of track within Tile on top modules [0]:sampling A; [1]: BC; [2]: D.

Definition at line 137 of file TileCosmicMuon.h.

◆ m_positionX

double TileCosmicMuon::m_positionX
private

X coordinate of point in track at selected plane (y=0 for cosmics z=0 for beam)

Definition at line 128 of file TileCosmicMuon.h.

◆ m_positionY

double TileCosmicMuon::m_positionY
private

Y coordinate of point in track at selected plane (y=0 for cosmics z=0 for beam)

Definition at line 129 of file TileCosmicMuon.h.

◆ m_positionZ

double TileCosmicMuon::m_positionZ
private

Z coordinate of point in track at selected plane (y=0 for cosmics z=0 for beam)

Definition at line 130 of file TileCosmicMuon.h.

◆ m_segmentModule

std::vector<int> TileCosmicMuon::m_segmentModule
private

Vector with segment module.

Definition at line 153 of file TileCosmicMuon.h.

◆ m_segmentPartition

std::vector<int> TileCosmicMuon::m_segmentPartition
private

Vector with segment partition.

Definition at line 151 of file TileCosmicMuon.h.

◆ m_segmentPath

std::vector<double> TileCosmicMuon::m_segmentPath
private

Vector with length of track within Tile on a given segment.

Definition at line 149 of file TileCosmicMuon.h.

◆ m_segmentSampling

std::vector<int> TileCosmicMuon::m_segmentSampling
private

Vector with segment sampling.

Definition at line 155 of file TileCosmicMuon.h.

◆ m_time

double TileCosmicMuon::m_time
private

Time of track at selected plane (y=0 for cosmics z=0 for beam)

Definition at line 127 of file TileCosmicMuon.h.

◆ m_trackCellHash

std::vector<IdentifierHash> TileCosmicMuon::m_trackCellHash
private

Vector with list of Identifier Hash of cells close to track.

Definition at line 146 of file TileCosmicMuon.h.


The documentation for this class was generated from the following files:
RunTileCalibRec.cells
cells
Definition: RunTileCalibRec.py:271
TileCosmicMuon::m_energyBottom
std::vector< double > m_energyBottom
Vector with sum energy of cells close to track on bottom modules [0]:sampling A; [1]: BC; [2]: D.
Definition: TileCosmicMuon.h:143
athena.path
path
python interpreter configuration --------------------------------------—
Definition: athena.py:126
phi
Scalar phi() const
phi method
Definition: AmgMatrixBasePlugin.h:64
TileCosmicMuon::m_positionZ
double m_positionZ
Z coordinate of point in track at selected plane (y=0 for cosmics z=0 for beam)
Definition: TileCosmicMuon.h:130
theta
Scalar theta() const
theta method
Definition: AmgMatrixBasePlugin.h:71
TileCosmicMuon::m_time
double m_time
Time of track at selected plane (y=0 for cosmics z=0 for beam)
Definition: TileCosmicMuon.h:127
python.AthDsoLogger.out
out
Definition: AthDsoLogger.py:71
TileCosmicMuon::m_segmentPartition
std::vector< int > m_segmentPartition
Vector with segment partition.
Definition: TileCosmicMuon.h:151
TileCosmicMuon::m_pathTop
std::vector< double > m_pathTop
Vector with length of track within Tile on top modules [0]:sampling A; [1]: BC; [2]: D.
Definition: TileCosmicMuon.h:137
TileCosmicMuon::m_positionX
double m_positionX
X coordinate of point in track at selected plane (y=0 for cosmics z=0 for beam)
Definition: TileCosmicMuon.h:128
python.PyAthena.module
module
Definition: PyAthena.py:134
TileCosmicMuon::m_segmentModule
std::vector< int > m_segmentModule
Vector with segment module.
Definition: TileCosmicMuon.h:153
TileCosmicMuon::m_fitQuality
double m_fitQuality
Fit parameter: 0= no fit; (Hough) 1=fit ok; (Minuit) >0 chi-square.
Definition: TileCosmicMuon.h:133
ParticleGun_FastCalo_ChargeFlip_Config.energy
energy
Definition: ParticleGun_FastCalo_ChargeFlip_Config.py:78
TileCosmicMuon::m_pathBottom
std::vector< double > m_pathBottom
Vector with length of track within Tile on bottom modules [0]:sampling A; [1]: BC; [2]: D.
Definition: TileCosmicMuon.h:139
TileCosmicMuon::m_positionY
double m_positionY
Y coordinate of point in track at selected plane (y=0 for cosmics z=0 for beam)
Definition: TileCosmicMuon.h:129
TileCosmicMuon::m_energyTop
std::vector< double > m_energyTop
Vector with sum energy of cells close to track on top modules [0]:sampling A; [1]: BC; [2]: D.
Definition: TileCosmicMuon.h:141
TileCosmicMuon::whoami
std::string whoami(void) const
Definition: TileCosmicMuon.h:44
TileCosmicMuon::m_segmentPath
std::vector< double > m_segmentPath
Vector with length of track within Tile on a given segment.
Definition: TileCosmicMuon.h:149
TileCosmicMuon::m_trackCellHash
std::vector< IdentifierHash > m_trackCellHash
Vector with list of Identifier Hash of cells close to track.
Definition: TileCosmicMuon.h:146
CaloSwCorrections.time
def time(flags, cells_name, *args, **kw)
Definition: CaloSwCorrections.py:242
StateLessPT_NewConfig.partition
partition
Definition: StateLessPT_NewConfig.py:49
TileCosmicMuon::m_directionTheta
double m_directionTheta
Theta angle of track direction.
Definition: TileCosmicMuon.h:132
makeTransCanvas.text
text
Definition: makeTransCanvas.py:11
TileCosmicMuon::m_fitNCells
int m_fitNCells
Number of cells used in fit.
Definition: TileCosmicMuon.h:134
TileCosmicMuon::m_directionPhi
double m_directionPhi
Phi angle of track direction.
Definition: TileCosmicMuon.h:131
length
double length(const pvec &v)
Definition: FPGATrackSimLLPDoubletHoughTransformTool.cxx:26
TileCosmicMuon::m_segmentSampling
std::vector< int > m_segmentSampling
Vector with segment sampling.
Definition: TileCosmicMuon.h:155
checkFileSG.ind
list ind
Definition: checkFileSG.py:118