Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
MMT_Hit.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3  */
4 
5 #ifndef MMT_HIT_H
6 #define MMT_HIT_H
7 
8 #include "MMT_struct.h"
9 
10 class MMT_Hit {
11  public:
12  MMT_Hit(const hitData_entry &entry, const MuonGM::MuonDetectorManager* detManager, const std::string_view stName, const std::vector<ROOT::Math::XYZVector> &planeCoordinates);
13  MMT_Hit(const MMT_Hit* hit);
14  ~MMT_Hit()=default;
15 
16  int getART() const { return m_ART_ASIC; }
17  int getAge() const { return m_age; }
18  int getBC() const { return m_BC_time; }
19  int getChannel() const { return m_strip; }
20  int getGasGap() const { return m_gasgap; }
21  int getMultiplet() const { return m_multiplet; }
22  int getPlane() const { return m_plane; }
23  char getSector() const { return m_sector; }
24  double getRZSlope() const { return m_RZslope; }
25  int getVMM() const { return m_VMM_chip; }
26  int getMMFE8() const { return m_MMFE_VMM; }
27  float getShift() const { return m_shift; }
28  const std::string& getStationName() const { return m_station_name; }
29  int getStationEta() const { return m_station_eta; }
30  int getStationPhi() const { return m_station_phi; }
31  double getR() const { return m_R; }
32  double getRp() const { return m_Rp; }
33  double getX() const { return m_localX; }
34  double getZ() const { return m_Z; }
35  double getPitchOverZ() const { return m_PitchOverZ; }
36  float getTime() const { return m_time; }
37  bool isNoise() const { return m_isNoise; }
38  bool isX() const;
39  bool isU() const;
40  bool isV() const;
41  void setAge(int age) { m_age = age; }
42  void setAsNoise() { m_isNoise = true; }
43  void setBC(int bc) { m_BC_time = bc; }
44  void setRZSlope(double slope) { m_RZslope = slope; }
45  void setZ(double z) { m_Z = z; }
46  bool verifyHit() const;
47 
48  private:
49  char m_sector;
50  std::string m_station_name;
54  int m_plane;
58  int m_gasgap;
59  int m_strip;
60  double m_localX;
61  double m_RZslope;
63  double m_Z, m_PitchOverZ;
64  double m_R, m_Rp;
65  bool m_isNoise;
66  float m_time, m_shift;
67 };
68 #endif
MMT_Hit::m_station_eta
int m_station_eta
Definition: MMT_Hit.h:55
MMT_Hit::setBC
void setBC(int bc)
Definition: MMT_Hit.h:43
MMT_Hit::getMMFE8
int getMMFE8() const
Definition: MMT_Hit.h:26
MMT_Hit::m_sector
char m_sector
Definition: MMT_Hit.h:49
MMT_Hit::m_R
double m_R
Definition: MMT_Hit.h:64
MMT_Hit::isNoise
bool isNoise() const
Definition: MMT_Hit.h:37
MMT_Hit::setZ
void setZ(double z)
Definition: MMT_Hit.h:45
MMT_Hit::getZ
double getZ() const
Definition: MMT_Hit.h:34
MMT_Hit::getStationPhi
int getStationPhi() const
Definition: MMT_Hit.h:30
MMT_Hit::m_RZslope
double m_RZslope
Definition: MMT_Hit.h:61
MMT_Hit::m_Rp
double m_Rp
Definition: MMT_Hit.h:64
MMT_Hit::getSector
char getSector() const
Definition: MMT_Hit.h:23
MMT_Hit::getGasGap
int getGasGap() const
Definition: MMT_Hit.h:20
MMT_Hit::m_ART_ASIC
int m_ART_ASIC
Definition: MMT_Hit.h:53
MMT_Hit::getRp
double getRp() const
Definition: MMT_Hit.h:32
MMT_Hit::getStationEta
int getStationEta() const
Definition: MMT_Hit.h:29
MMT_Hit
Definition: MMT_Hit.h:10
MMT_Hit::isV
bool isV() const
Definition: MMT_Hit.cxx:134
MMT_Hit::getVMM
int getVMM() const
Definition: MMT_Hit.h:25
MMT_Hit::m_Z
double m_Z
Definition: MMT_Hit.h:63
MMT_Hit::getART
int getART() const
Definition: MMT_Hit.h:16
MMT_Hit::verifyHit
bool verifyHit() const
Definition: MMT_Hit.cxx:139
MMT_Hit::getR
double getR() const
Definition: MMT_Hit.h:31
MMT_Hit::m_age
int m_age
Definition: MMT_Hit.h:62
MMT_Hit::m_shift
float m_shift
Definition: MMT_Hit.h:66
MMT_Hit::setAge
void setAge(int age)
Definition: MMT_Hit.h:41
MMT_Hit::m_PitchOverZ
double m_PitchOverZ
Definition: MMT_Hit.h:63
MMT_Hit::getShift
float getShift() const
Definition: MMT_Hit.h:27
MMT_Hit::m_gasgap
int m_gasgap
Definition: MMT_Hit.h:58
MMT_Hit::m_plane
int m_plane
Definition: MMT_Hit.h:54
MMT_Hit::m_VMM_chip
int m_VMM_chip
Definition: MMT_Hit.h:51
z
#define z
grepfile.age
age
Definition: grepfile.py:26
MMT_Hit::getChannel
int getChannel() const
Definition: MMT_Hit.h:19
MMT_Hit::setAsNoise
void setAsNoise()
Definition: MMT_Hit.h:42
MMT_Hit::isU
bool isU() const
Definition: MMT_Hit.cxx:129
MMT_Hit::m_station_phi
int m_station_phi
Definition: MMT_Hit.h:56
MMT_Hit::m_MMFE_VMM
int m_MMFE_VMM
Definition: MMT_Hit.h:52
MMT_Hit::getStationName
const std::string & getStationName() const
Definition: MMT_Hit.h:28
MMT_struct.h
MMT_Hit::m_multiplet
int m_multiplet
Definition: MMT_Hit.h:57
MMT_Hit::m_station_name
std::string m_station_name
Definition: MMT_Hit.h:50
MMT_Hit::getPitchOverZ
double getPitchOverZ() const
Definition: MMT_Hit.h:35
MMT_Hit::getAge
int getAge() const
Definition: MMT_Hit.h:17
GetAllXsec.entry
list entry
Definition: GetAllXsec.py:132
MMT_Hit::m_time
float m_time
Definition: MMT_Hit.h:66
MMT_Hit::getBC
int getBC() const
Definition: MMT_Hit.h:18
MMT_Hit::isX
bool isX() const
Definition: MMT_Hit.cxx:124
MMT_Hit::getTime
float getTime() const
Definition: MMT_Hit.h:36
MMT_Hit::~MMT_Hit
~MMT_Hit()=default
MMT_Hit::m_BC_time
int m_BC_time
Definition: MMT_Hit.h:62
MuonGM::MuonDetectorManager
The MuonDetectorManager stores the transient representation of the Muon Spectrometer geometry and pro...
Definition: MuonDetDescr/MuonReadoutGeometry/MuonReadoutGeometry/MuonDetectorManager.h:50
MMT_Hit::getRZSlope
double getRZSlope() const
Definition: MMT_Hit.h:24
MMT_Hit::getMultiplet
int getMultiplet() const
Definition: MMT_Hit.h:21
MMT_Hit::m_strip
int m_strip
Definition: MMT_Hit.h:59
MMT_Hit::MMT_Hit
MMT_Hit(const hitData_entry &entry, const MuonGM::MuonDetectorManager *detManager, const std::string_view stName, const std::vector< ROOT::Math::XYZVector > &planeCoordinates)
Definition: MMT_Hit.cxx:11
hitData_entry
Definition: MMT_struct.h:70
MMT_Hit::getX
double getX() const
Definition: MMT_Hit.h:33
MMT_Hit::setRZSlope
void setRZSlope(double slope)
Definition: MMT_Hit.h:44
MMT_Hit::getPlane
int getPlane() const
Definition: MMT_Hit.h:22
MMT_Hit::m_localX
double m_localX
Definition: MMT_Hit.h:60
MMT_Hit::m_isNoise
bool m_isNoise
Definition: MMT_Hit.h:65