ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
Tracking
TrkDetDescr
TrkDetDescrExample
root
MaterialComparison
MaterialMapperTree.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef MaterialMapperTree_h
6
#define MaterialMapperTree_h
7
8
#include <TProfile.h>
9
#include <TROOT.h>
10
#include <TChain.h>
11
#include <TFile.h>
12
#include <vector>
13
14
class
MaterialMapperTree
{
15
public :
16
TTree *
fChain
;
17
Int_t
fCurrent
;
18
19
// Declaration of leave types
20
Float_t
Angle
;
21
22
Float_t
Eta
;
23
Float_t
Phi
;
24
25
Float_t
BeamPipePathInX0
;
26
Float_t
BeamPipePathInL0
;
27
Float_t
BeamPipeA
;
28
Float_t
BeamPipeZ
;
29
Float_t
BeamPipeRho
;
30
Float_t
BeamPipePath
;
31
32
Float_t
PixelPathInX0
;
33
Float_t
PixelPathInL0
;
34
Float_t
PixelA
;
35
Float_t
PixelZ
;
36
Float_t
PixelRho
;
37
Float_t
PixelPath
;
38
39
Float_t
SctPathInX0
;
40
Float_t
SctPathInL0
;
41
Float_t
SctA
;
42
Float_t
SctZ
;
43
Float_t
SctRho
;
44
Float_t
SctPath
;
45
46
Float_t
TrtPathInX0
;
47
Float_t
TrtPathInL0
;
48
Float_t
TrtA
;
49
Float_t
TrtZ
;
50
Float_t
TrtRho
;
51
Float_t
TrtPath
;
52
53
Float_t
InDetServPathInX0
;
54
Float_t
InDetServPathInL0
;
55
Float_t
InDetServA
;
56
Float_t
InDetServZ
;
57
Float_t
InDetServRho
;
58
Float_t
InDetServPath
;
59
60
Float_t
InDetPathInX0
;
61
Float_t
InDetPathInL0
;
62
Float_t
InDetA
;
63
Float_t
InDetZ
;
64
Float_t
InDetRho
;
65
Float_t
InDetPath
;
66
67
Float_t
SolenoidPathInX0
;
68
Float_t
SolenoidPathInL0
;
69
Float_t
SolenoidA
;
70
Float_t
SolenoidZ
;
71
Float_t
SolenoidRho
;
72
Float_t
SolenoidPath
;
73
74
Float_t
LArPathInX0
;
75
Float_t
LArPathInL0
;
76
Float_t
LArA
;
77
Float_t
LArZ
;
78
Float_t
LArRho
;
79
Float_t
LArPath
;
80
81
Float_t
TilePathInX0
;
82
Float_t
TilePathInL0
;
83
Float_t
TileA
;
84
Float_t
TileZ
;
85
Float_t
TileRho
;
86
Float_t
TilePath
;
87
88
Float_t
CaloServPathInX0
;
89
Float_t
CaloServPathInL0
;
90
Float_t
CaloServA
;
91
Float_t
CaloServZ
;
92
Float_t
CaloServRho
;
93
Float_t
CaloServPath
;
94
95
Float_t
CaloPathInX0
;
96
Float_t
CaloPathInL0
;
97
Float_t
CaloA
;
98
Float_t
CaloZ
;
99
Float_t
CaloRho
;
100
Float_t
CaloPath
;
101
102
Float_t
TotalPathInX0
;
103
Float_t
TotalPathInL0
;
104
Float_t
TotalA
;
105
Float_t
TotalZ
;
106
Float_t
TotalRho
;
107
Float_t
TotalPath
;
108
109
// List of branches
110
TBranch *
b_Eta
;
111
TBranch *
b_Phi
;
112
113
TBranch *
b_BeamPipePathInX0
;
114
TBranch *
b_BeamPipePathInL0
;
115
TBranch *
b_BeamPipeA
;
116
TBranch *
b_BeamPipeZ
;
117
TBranch *
b_BeamPipeRho
;
118
TBranch *
b_BeamPipePath
;
119
120
TBranch *
b_PixelPathInX0
;
121
TBranch *
b_PixelPathInL0
;
122
TBranch *
b_PixelA
;
123
TBranch *
b_PixelZ
;
124
TBranch *
b_PixelRho
;
125
TBranch *
b_PixelPath
;
126
127
TBranch *
b_SctPathInX0
;
128
TBranch *
b_SctPathInL0
;
129
TBranch *
b_SctA
;
130
TBranch *
b_SctZ
;
131
TBranch *
b_SctRho
;
132
TBranch *
b_SctPath
;
133
134
TBranch *
b_TrtPathInX0
;
135
TBranch *
b_TrtPathInL0
;
136
TBranch *
b_TrtA
;
137
TBranch *
b_TrtZ
;
138
TBranch *
b_TrtRho
;
139
TBranch *
b_TrtPath
;
140
141
TBranch *
b_InDetServPathInX0
;
142
TBranch *
b_InDetServPathInL0
;
143
TBranch *
b_InDetServA
;
144
TBranch *
b_InDetServZ
;
145
TBranch *
b_InDetServRho
;
146
TBranch *
b_InDetServPath
;
147
148
TBranch *
b_InDetPathInX0
;
149
TBranch *
b_InDetPathInL0
;
150
TBranch *
b_InDetA
;
151
TBranch *
b_InDetZ
;
152
TBranch *
b_InDetRho
;
153
TBranch *
b_InDetPath
;
154
155
TBranch *
b_SolenoidPathInX0
;
156
TBranch *
b_SolenoidPathInL0
;
157
TBranch *
b_SolenoidA
;
158
TBranch *
b_SolenoidZ
;
159
TBranch *
b_SolenoidRho
;
160
TBranch *
b_SolenoidPath
;
161
162
TBranch *
b_LArPathInX0
;
163
TBranch *
b_LArPathInL0
;
164
TBranch *
b_LArA
;
165
TBranch *
b_LArZ
;
166
TBranch *
b_LArRho
;
167
TBranch *
b_LArPath
;
168
169
TBranch *
b_TilePathInX0
;
170
TBranch *
b_TilePathInL0
;
171
TBranch *
b_TileA
;
172
TBranch *
b_TileZ
;
173
TBranch *
b_TileRho
;
174
TBranch *
b_TilePath
;
175
176
TBranch *
b_CaloServPathInX0
;
177
TBranch *
b_CaloServPathInL0
;
178
TBranch *
b_CaloServA
;
179
TBranch *
b_CaloServZ
;
180
TBranch *
b_CaloServRho
;
181
TBranch *
b_CaloServPath
;
182
183
TBranch *
b_CaloPathInX0
;
184
TBranch *
b_CaloPathInL0
;
185
TBranch *
b_CaloA
;
186
TBranch *
b_CaloZ
;
187
TBranch *
b_CaloRho
;
188
TBranch *
b_CaloPath
;
189
190
TBranch *
b_TotalPathInX0
;
191
TBranch *
b_TotalPathInL0
;
192
TBranch *
b_TotalA
;
193
TBranch *
b_TotalZ
;
194
TBranch *
b_TotalRho
;
195
TBranch *
b_TotalPath
;
196
197
MaterialMapperTree
(TTree *
tree
=0);
198
MaterialMapperTree
(
const
MaterialMapperTree
&) =
delete
;
199
MaterialMapperTree
&
operator =
(
const
MaterialMapperTree
&) =
delete
;
200
virtual
~MaterialMapperTree
();
201
virtual
Int_t
Cut
(Long64_t entry);
202
virtual
Int_t
GetEntry
(Long64_t entry);
203
virtual
Long64_t
LoadTree
(Long64_t entry);
204
void
Init
(TTree *
tree
);
205
virtual
std::vector<TProfile*>*
profileHistograms
(
int
bin
, TString
type
,
bool
etaphi=
true
);
206
virtual
Bool_t
Notify
();
207
virtual
void
Show
(Long64_t entry = -1);
208
};
209
210
#endif
MaterialMapperTree::Notify
virtual Bool_t Notify()
MaterialMapperTree::b_SctPathInX0
TBranch * b_SctPathInX0
Definition
MaterialMapperTree.h:127
MaterialMapperTree::b_InDetPathInX0
TBranch * b_InDetPathInX0
Definition
MaterialMapperTree.h:148
MaterialMapperTree::b_TotalPathInX0
TBranch * b_TotalPathInX0
Definition
MaterialMapperTree.h:190
MaterialMapperTree::b_CaloServPathInL0
TBranch * b_CaloServPathInL0
Definition
MaterialMapperTree.h:177
MaterialMapperTree::SolenoidRho
Float_t SolenoidRho
Definition
MaterialMapperTree.h:71
MaterialMapperTree::TrtPath
Float_t TrtPath
Definition
MaterialMapperTree.h:51
MaterialMapperTree::SctA
Float_t SctA
Definition
MaterialMapperTree.h:41
MaterialMapperTree::TrtRho
Float_t TrtRho
Definition
MaterialMapperTree.h:50
MaterialMapperTree::Cut
virtual Int_t Cut(Long64_t entry)
MaterialMapperTree::b_BeamPipeZ
TBranch * b_BeamPipeZ
Definition
MaterialMapperTree.h:116
MaterialMapperTree::LArPath
Float_t LArPath
Definition
MaterialMapperTree.h:79
MaterialMapperTree::b_PixelA
TBranch * b_PixelA
Definition
MaterialMapperTree.h:122
MaterialMapperTree::b_SolenoidPathInX0
TBranch * b_SolenoidPathInX0
Definition
MaterialMapperTree.h:155
MaterialMapperTree::b_Phi
TBranch * b_Phi
Definition
MaterialMapperTree.h:111
MaterialMapperTree::LArPathInX0
Float_t LArPathInX0
Definition
MaterialMapperTree.h:74
MaterialMapperTree::CaloPathInX0
Float_t CaloPathInX0
Definition
MaterialMapperTree.h:95
MaterialMapperTree::PixelPathInL0
Float_t PixelPathInL0
Definition
MaterialMapperTree.h:33
MaterialMapperTree::SolenoidPathInX0
Float_t SolenoidPathInX0
Definition
MaterialMapperTree.h:67
MaterialMapperTree::InDetServPath
Float_t InDetServPath
Definition
MaterialMapperTree.h:58
MaterialMapperTree::LoadTree
virtual Long64_t LoadTree(Long64_t entry)
MaterialMapperTree::b_TotalPath
TBranch * b_TotalPath
Definition
MaterialMapperTree.h:195
MaterialMapperTree::b_InDetServPathInL0
TBranch * b_InDetServPathInL0
Definition
MaterialMapperTree.h:142
MaterialMapperTree::b_BeamPipeA
TBranch * b_BeamPipeA
Definition
MaterialMapperTree.h:115
MaterialMapperTree::LArA
Float_t LArA
Definition
MaterialMapperTree.h:76
MaterialMapperTree::b_TrtRho
TBranch * b_TrtRho
Definition
MaterialMapperTree.h:138
MaterialMapperTree::b_SolenoidRho
TBranch * b_SolenoidRho
Definition
MaterialMapperTree.h:159
MaterialMapperTree::TileZ
Float_t TileZ
Definition
MaterialMapperTree.h:84
MaterialMapperTree::InDetPathInL0
Float_t InDetPathInL0
Definition
MaterialMapperTree.h:61
MaterialMapperTree::InDetPathInX0
Float_t InDetPathInX0
Definition
MaterialMapperTree.h:60
MaterialMapperTree::TilePathInX0
Float_t TilePathInX0
Definition
MaterialMapperTree.h:81
MaterialMapperTree::CaloA
Float_t CaloA
Definition
MaterialMapperTree.h:97
MaterialMapperTree::b_PixelRho
TBranch * b_PixelRho
Definition
MaterialMapperTree.h:124
MaterialMapperTree::InDetA
Float_t InDetA
Definition
MaterialMapperTree.h:62
MaterialMapperTree::PixelZ
Float_t PixelZ
Definition
MaterialMapperTree.h:35
MaterialMapperTree::b_TileRho
TBranch * b_TileRho
Definition
MaterialMapperTree.h:173
MaterialMapperTree::InDetServZ
Float_t InDetServZ
Definition
MaterialMapperTree.h:56
MaterialMapperTree::TilePathInL0
Float_t TilePathInL0
Definition
MaterialMapperTree.h:82
MaterialMapperTree::LArRho
Float_t LArRho
Definition
MaterialMapperTree.h:78
MaterialMapperTree::Show
virtual void Show(Long64_t entry=-1)
MaterialMapperTree::CaloPath
Float_t CaloPath
Definition
MaterialMapperTree.h:100
MaterialMapperTree::TotalPath
Float_t TotalPath
Definition
MaterialMapperTree.h:107
MaterialMapperTree::b_LArPath
TBranch * b_LArPath
Definition
MaterialMapperTree.h:167
MaterialMapperTree::InDetRho
Float_t InDetRho
Definition
MaterialMapperTree.h:64
MaterialMapperTree::CaloPathInL0
Float_t CaloPathInL0
Definition
MaterialMapperTree.h:96
MaterialMapperTree::InDetServPathInL0
Float_t InDetServPathInL0
Definition
MaterialMapperTree.h:54
MaterialMapperTree::TotalA
Float_t TotalA
Definition
MaterialMapperTree.h:104
MaterialMapperTree::b_LArZ
TBranch * b_LArZ
Definition
MaterialMapperTree.h:165
MaterialMapperTree::b_Eta
TBranch * b_Eta
Definition
MaterialMapperTree.h:110
MaterialMapperTree::MaterialMapperTree
MaterialMapperTree(const MaterialMapperTree &)=delete
MaterialMapperTree::TrtPathInX0
Float_t TrtPathInX0
Definition
MaterialMapperTree.h:46
MaterialMapperTree::b_TilePathInX0
TBranch * b_TilePathInX0
Definition
MaterialMapperTree.h:169
MaterialMapperTree::SctRho
Float_t SctRho
Definition
MaterialMapperTree.h:43
MaterialMapperTree::b_TileZ
TBranch * b_TileZ
Definition
MaterialMapperTree.h:172
MaterialMapperTree::profileHistograms
virtual std::vector< TProfile * > * profileHistograms(int bin, TString type, bool etaphi=true)
MaterialMapperTree::Angle
Float_t Angle
current Tree number in a TChain
Definition
MaterialMapperTree.h:20
MaterialMapperTree::b_CaloServPath
TBranch * b_CaloServPath
Definition
MaterialMapperTree.h:181
MaterialMapperTree::b_CaloServZ
TBranch * b_CaloServZ
Definition
MaterialMapperTree.h:179
MaterialMapperTree::b_TotalA
TBranch * b_TotalA
Definition
MaterialMapperTree.h:192
MaterialMapperTree::LArPathInL0
Float_t LArPathInL0
Definition
MaterialMapperTree.h:75
MaterialMapperTree::b_TrtPath
TBranch * b_TrtPath
Definition
MaterialMapperTree.h:139
MaterialMapperTree::b_CaloServRho
TBranch * b_CaloServRho
Definition
MaterialMapperTree.h:180
MaterialMapperTree::b_TilePathInL0
TBranch * b_TilePathInL0
Definition
MaterialMapperTree.h:170
MaterialMapperTree::b_BeamPipePathInX0
TBranch * b_BeamPipePathInX0
Definition
MaterialMapperTree.h:113
MaterialMapperTree::b_TrtPathInX0
TBranch * b_TrtPathInX0
Definition
MaterialMapperTree.h:134
MaterialMapperTree::PixelPathInX0
Float_t PixelPathInX0
Definition
MaterialMapperTree.h:32
MaterialMapperTree::b_CaloPathInX0
TBranch * b_CaloPathInX0
Definition
MaterialMapperTree.h:183
MaterialMapperTree::b_PixelPath
TBranch * b_PixelPath
Definition
MaterialMapperTree.h:125
MaterialMapperTree::TrtPathInL0
Float_t TrtPathInL0
Definition
MaterialMapperTree.h:47
MaterialMapperTree::CaloServRho
Float_t CaloServRho
Definition
MaterialMapperTree.h:92
MaterialMapperTree::b_CaloZ
TBranch * b_CaloZ
Definition
MaterialMapperTree.h:186
MaterialMapperTree::b_PixelZ
TBranch * b_PixelZ
Definition
MaterialMapperTree.h:123
MaterialMapperTree::b_TrtPathInL0
TBranch * b_TrtPathInL0
Definition
MaterialMapperTree.h:135
MaterialMapperTree::b_SctRho
TBranch * b_SctRho
Definition
MaterialMapperTree.h:131
MaterialMapperTree::BeamPipePathInL0
Float_t BeamPipePathInL0
Definition
MaterialMapperTree.h:26
MaterialMapperTree::b_InDetA
TBranch * b_InDetA
Definition
MaterialMapperTree.h:150
MaterialMapperTree::b_PixelPathInL0
TBranch * b_PixelPathInL0
Definition
MaterialMapperTree.h:121
MaterialMapperTree::b_SolenoidPathInL0
TBranch * b_SolenoidPathInL0
Definition
MaterialMapperTree.h:156
MaterialMapperTree::SolenoidA
Float_t SolenoidA
Definition
MaterialMapperTree.h:69
MaterialMapperTree::b_InDetServA
TBranch * b_InDetServA
Definition
MaterialMapperTree.h:143
MaterialMapperTree::b_InDetServPathInX0
TBranch * b_InDetServPathInX0
Definition
MaterialMapperTree.h:141
MaterialMapperTree::TotalZ
Float_t TotalZ
Definition
MaterialMapperTree.h:105
MaterialMapperTree::MaterialMapperTree
MaterialMapperTree(TTree *tree=0)
MaterialMapperTree::b_TotalPathInL0
TBranch * b_TotalPathInL0
Definition
MaterialMapperTree.h:191
MaterialMapperTree::b_InDetServZ
TBranch * b_InDetServZ
Definition
MaterialMapperTree.h:144
MaterialMapperTree::TilePath
Float_t TilePath
Definition
MaterialMapperTree.h:86
MaterialMapperTree::b_TotalZ
TBranch * b_TotalZ
Definition
MaterialMapperTree.h:193
MaterialMapperTree::BeamPipePathInX0
Float_t BeamPipePathInX0
Definition
MaterialMapperTree.h:25
MaterialMapperTree::b_CaloPathInL0
TBranch * b_CaloPathInL0
Definition
MaterialMapperTree.h:184
MaterialMapperTree::b_InDetServRho
TBranch * b_InDetServRho
Definition
MaterialMapperTree.h:145
MaterialMapperTree::Eta
Float_t Eta
Definition
MaterialMapperTree.h:22
MaterialMapperTree::b_CaloServPathInX0
TBranch * b_CaloServPathInX0
Definition
MaterialMapperTree.h:176
MaterialMapperTree::b_InDetPath
TBranch * b_InDetPath
Definition
MaterialMapperTree.h:153
MaterialMapperTree::BeamPipeA
Float_t BeamPipeA
Definition
MaterialMapperTree.h:27
MaterialMapperTree::b_SctA
TBranch * b_SctA
Definition
MaterialMapperTree.h:129
MaterialMapperTree::fChain
TTree * fChain
Definition
MaterialMapperTree.h:16
MaterialMapperTree::InDetServRho
Float_t InDetServRho
Definition
MaterialMapperTree.h:57
MaterialMapperTree::b_LArA
TBranch * b_LArA
Definition
MaterialMapperTree.h:164
MaterialMapperTree::CaloServPathInL0
Float_t CaloServPathInL0
Definition
MaterialMapperTree.h:89
MaterialMapperTree::SolenoidPath
Float_t SolenoidPath
Definition
MaterialMapperTree.h:72
MaterialMapperTree::TrtA
Float_t TrtA
Definition
MaterialMapperTree.h:48
MaterialMapperTree::InDetServA
Float_t InDetServA
Definition
MaterialMapperTree.h:55
MaterialMapperTree::b_CaloServA
TBranch * b_CaloServA
Definition
MaterialMapperTree.h:178
MaterialMapperTree::SolenoidPathInL0
Float_t SolenoidPathInL0
Definition
MaterialMapperTree.h:68
MaterialMapperTree::BeamPipeZ
Float_t BeamPipeZ
Definition
MaterialMapperTree.h:28
MaterialMapperTree::b_CaloRho
TBranch * b_CaloRho
Definition
MaterialMapperTree.h:187
MaterialMapperTree::TileRho
Float_t TileRho
Definition
MaterialMapperTree.h:85
MaterialMapperTree::PixelRho
Float_t PixelRho
Definition
MaterialMapperTree.h:36
MaterialMapperTree::GetEntry
virtual Int_t GetEntry(Long64_t entry)
MaterialMapperTree::CaloServZ
Float_t CaloServZ
Definition
MaterialMapperTree.h:91
MaterialMapperTree::b_BeamPipePathInL0
TBranch * b_BeamPipePathInL0
Definition
MaterialMapperTree.h:114
MaterialMapperTree::b_InDetZ
TBranch * b_InDetZ
Definition
MaterialMapperTree.h:151
MaterialMapperTree::CaloZ
Float_t CaloZ
Definition
MaterialMapperTree.h:98
MaterialMapperTree::PixelA
Float_t PixelA
Definition
MaterialMapperTree.h:34
MaterialMapperTree::SctPath
Float_t SctPath
Definition
MaterialMapperTree.h:44
MaterialMapperTree::InDetZ
Float_t InDetZ
Definition
MaterialMapperTree.h:63
MaterialMapperTree::CaloServPath
Float_t CaloServPath
Definition
MaterialMapperTree.h:93
MaterialMapperTree::BeamPipePath
Float_t BeamPipePath
Definition
MaterialMapperTree.h:30
MaterialMapperTree::SolenoidZ
Float_t SolenoidZ
Definition
MaterialMapperTree.h:70
MaterialMapperTree::b_TrtA
TBranch * b_TrtA
Definition
MaterialMapperTree.h:136
MaterialMapperTree::CaloRho
Float_t CaloRho
Definition
MaterialMapperTree.h:99
MaterialMapperTree::BeamPipeRho
Float_t BeamPipeRho
Definition
MaterialMapperTree.h:29
MaterialMapperTree::b_TrtZ
TBranch * b_TrtZ
Definition
MaterialMapperTree.h:137
MaterialMapperTree::b_TotalRho
TBranch * b_TotalRho
Definition
MaterialMapperTree.h:194
MaterialMapperTree::PixelPath
Float_t PixelPath
Definition
MaterialMapperTree.h:37
MaterialMapperTree::b_CaloA
TBranch * b_CaloA
Definition
MaterialMapperTree.h:185
MaterialMapperTree::SctZ
Float_t SctZ
Definition
MaterialMapperTree.h:42
MaterialMapperTree::b_BeamPipePath
TBranch * b_BeamPipePath
Definition
MaterialMapperTree.h:118
MaterialMapperTree::fCurrent
Int_t fCurrent
pointer to the analyzed TTree or TChain
Definition
MaterialMapperTree.h:17
MaterialMapperTree::b_SolenoidA
TBranch * b_SolenoidA
Definition
MaterialMapperTree.h:157
MaterialMapperTree::b_InDetServPath
TBranch * b_InDetServPath
Definition
MaterialMapperTree.h:146
MaterialMapperTree::~MaterialMapperTree
virtual ~MaterialMapperTree()
MaterialMapperTree::b_BeamPipeRho
TBranch * b_BeamPipeRho
Definition
MaterialMapperTree.h:117
MaterialMapperTree::b_LArPathInX0
TBranch * b_LArPathInX0
Definition
MaterialMapperTree.h:162
MaterialMapperTree::b_InDetPathInL0
TBranch * b_InDetPathInL0
Definition
MaterialMapperTree.h:149
MaterialMapperTree::SctPathInL0
Float_t SctPathInL0
Definition
MaterialMapperTree.h:40
MaterialMapperTree::TotalPathInX0
Float_t TotalPathInX0
Definition
MaterialMapperTree.h:102
MaterialMapperTree::TrtZ
Float_t TrtZ
Definition
MaterialMapperTree.h:49
MaterialMapperTree::b_PixelPathInX0
TBranch * b_PixelPathInX0
Definition
MaterialMapperTree.h:120
MaterialMapperTree::b_SctPathInL0
TBranch * b_SctPathInL0
Definition
MaterialMapperTree.h:128
MaterialMapperTree::b_CaloPath
TBranch * b_CaloPath
Definition
MaterialMapperTree.h:188
MaterialMapperTree::b_TileA
TBranch * b_TileA
Definition
MaterialMapperTree.h:171
MaterialMapperTree::CaloServPathInX0
Float_t CaloServPathInX0
Definition
MaterialMapperTree.h:88
MaterialMapperTree::b_SctPath
TBranch * b_SctPath
Definition
MaterialMapperTree.h:132
MaterialMapperTree::b_InDetRho
TBranch * b_InDetRho
Definition
MaterialMapperTree.h:152
MaterialMapperTree::InDetPath
Float_t InDetPath
Definition
MaterialMapperTree.h:65
MaterialMapperTree::Phi
Float_t Phi
Definition
MaterialMapperTree.h:23
MaterialMapperTree::b_TilePath
TBranch * b_TilePath
Definition
MaterialMapperTree.h:174
MaterialMapperTree::b_SolenoidZ
TBranch * b_SolenoidZ
Definition
MaterialMapperTree.h:158
MaterialMapperTree::b_LArPathInL0
TBranch * b_LArPathInL0
Definition
MaterialMapperTree.h:163
MaterialMapperTree::b_SolenoidPath
TBranch * b_SolenoidPath
Definition
MaterialMapperTree.h:160
MaterialMapperTree::TotalPathInL0
Float_t TotalPathInL0
Definition
MaterialMapperTree.h:103
MaterialMapperTree::InDetServPathInX0
Float_t InDetServPathInX0
Definition
MaterialMapperTree.h:53
MaterialMapperTree::LArZ
Float_t LArZ
Definition
MaterialMapperTree.h:77
MaterialMapperTree::SctPathInX0
Float_t SctPathInX0
Definition
MaterialMapperTree.h:39
MaterialMapperTree::Init
void Init(TTree *tree)
MaterialMapperTree::TotalRho
Float_t TotalRho
Definition
MaterialMapperTree.h:106
MaterialMapperTree::b_LArRho
TBranch * b_LArRho
Definition
MaterialMapperTree.h:166
MaterialMapperTree::CaloServA
Float_t CaloServA
Definition
MaterialMapperTree.h:90
MaterialMapperTree::operator=
MaterialMapperTree & operator=(const MaterialMapperTree &)=delete
MaterialMapperTree::TileA
Float_t TileA
Definition
MaterialMapperTree.h:83
MaterialMapperTree::b_SctZ
TBranch * b_SctZ
Definition
MaterialMapperTree.h:130
bin
Definition
BinsDiffFromStripMedian.h:43
type
tree
TChain * tree
Definition
tile_monitor.h:30
Generated on
for ATLAS Offline Software by
1.17.0