CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes
MaterialAccountingGroup Class Reference

#include <MaterialAccountingGroup.h>

Classes

class  BoundingBox
 

Public Member Functions

bool addDetector (const MaterialAccountingDetector &detector)
 buffer material from a detector, if the detector is inside the DetLayer bounds More...
 
MaterialAccountingStep average (void) const
 return the average normalized material accounting informations More...
 
double averageEnergyLoss (void) const
 return the average normalized energy loss density factor for Bethe-Bloch More...
 
double averageLength (void) const
 return the average normalized layer thickness More...
 
double averageRadiationLengths (void) const
 return the average normalized number of radiation lengths More...
 
const std::vector< GlobalPoint > & elements (void) const
 
void endOfTrack (void)
 commit the buffer and reset the "already hit by this track" flag More...
 
std::pair< double, double > getBoundingR () const
 Return the bouding limit in R for the hosted Group. More...
 
std::pair< double, double > getBoundingZ () const
 Return the bouding limit in Z for the hosted Group. More...
 
std::string info (void) const
 get some infos More...
 
bool inside (const MaterialAccountingDetector &detector) const
 check if detector is inside any part of this layer More...
 
 MaterialAccountingGroup (const std::string &name, const DDCompactView &geometry)
 explicit constructors More...
 
const std::string & name (void) const
 get the layer name More...
 
void savePlots (void)
 save the plots More...
 
double sigmaEnergyLoss (void) const
 return the sigma of the normalized energy loss density factor for Bethe-Bloch More...
 
double sigmaLength (void) const
 return the sigma of the normalized layer thickness More...
 
double sigmaRadiationLengths (void) const
 return the sigma of the normalized number of radiation lengths More...
 
unsigned int tracks (void) const
 return the number of tracks that hit this layer More...
 
 ~MaterialAccountingGroup (void)
 destructor More...
 

Private Member Functions

 MaterialAccountingGroup (const MaterialAccountingGroup &layer)=delete
 stop default copy ctor More...
 
MaterialAccountingGroupoperator= (const MaterialAccountingGroup &layer)=delete
 stop default assignment operator More...
 
void savePlot (TH1F *plot, const std::string &name)
 
void savePlot (TProfile *plot, float average, const std::string &name)
 

Private Attributes

MaterialAccountingStep m_accounting
 
BoundingBox m_boundingbox
 
MaterialAccountingStep m_buffer
 
bool m_counted
 
TH1F * m_dedx_spectrum
 
TProfile * m_dedx_vs_eta
 
TProfile * m_dedx_vs_r
 
TProfile * m_dedx_vs_z
 
std::vector< GlobalPointm_elements
 
MaterialAccountingStep m_errors
 
TFile * m_file
 
std::string m_name
 
TH1F * m_radlen_spectrum
 
TProfile * m_radlen_vs_eta
 
TProfile * m_radlen_vs_r
 
TProfile * m_radlen_vs_z
 
unsigned int m_tracks
 

Static Private Attributes

static double const s_tolerance
 

Detailed Description

Definition at line 19 of file MaterialAccountingGroup.h.

Constructor & Destructor Documentation

MaterialAccountingGroup::MaterialAccountingGroup ( const std::string &  name,
const DDCompactView geometry 
)

explicit constructors

Definition at line 23 of file MaterialAccountingGroup.cc.

References ALCARECOTkAlBeamHalo_cff::filter, MaterialAccountingGroup::BoundingBox::grow(), mps_fire::i, DDFilteredView::logicalPart(), LogTrace, m_boundingbox, m_dedx_spectrum, m_dedx_vs_eta, m_dedx_vs_r, m_dedx_vs_z, m_elements, m_name, m_radlen_spectrum, m_radlen_vs_eta, m_radlen_vs_r, m_radlen_vs_z, DDFilteredView::next(), perp(), position, MaterialAccountingGroup::BoundingBox::range_r(), MaterialAccountingGroup::BoundingBox::range_z(), s_tolerance, DDBase< N, C >::toString(), DDFilteredView::translation(), and z.

24  : m_name(name),
25  m_elements(),
26  m_boundingbox(),
27  m_accounting(),
28  m_errors(),
29  m_tracks(0),
30  m_counted(false),
31  m_file(nullptr) {
32  // retrieve the elements from DDD
33  DDSpecificsMatchesValueFilter filter{DDValue("TrackingMaterialGroup", name)};
34  DDFilteredView fv(geometry, filter);
35  LogTrace("MaterialAccountingGroup") << "Elements within: " << name << std::endl;
36  while (fv.next()) {
37  // DD3Vector and DDTranslation are the same type as math::XYZVector
38  math::XYZVector position = fv.translation() / 10.; // mm -> cm
39  LogTrace("MaterialAccountingGroup") << "Adding element at(r,z): ("
40  << GlobalPoint(position.x(), position.y(), position.z()).perp() << ", "
41  << GlobalPoint(position.x(), position.y(), position.z()).z() << ") cm"
42  << std::endl;
43  LogTrace("MaterialAccountingGroup") << "Name of added element: " << fv.logicalPart().toString() << std::endl;
44  m_elements.push_back(GlobalPoint(position.x(), position.y(), position.z()));
45  }
46 
47  // grow the bounding box
48  for (unsigned int i = 0; i < m_elements.size(); ++i) {
50  }
52  LogTrace("MaterialAccountingGroup") << "Final BBox r_range: " << m_boundingbox.range_r().first << ", "
53  << m_boundingbox.range_r().second << std::endl
54  << "Final BBox z_range: " << m_boundingbox.range_z().first << ", "
55  << m_boundingbox.range_z().second << std::endl;
56 
57  // initialize the histograms
58  m_dedx_spectrum = new TH1F((m_name + "_dedx_spectrum").c_str(), "Energy loss spectrum", 1000, 0, 1);
59  m_radlen_spectrum = new TH1F((m_name + "_radlen_spectrum").c_str(), "Radiation lengths spectrum", 1000, 0, 1);
60  m_dedx_vs_eta = new TProfile((m_name + "_dedx_vs_eta").c_str(), "Energy loss vs. eta", 600, -3, 3);
61  m_dedx_vs_z = new TProfile((m_name + "_dedx_vs_z").c_str(), "Energy loss vs. Z", 6000, -300, 300);
62  m_dedx_vs_r = new TProfile((m_name + "_dedx_vs_r").c_str(), "Energy loss vs. R", 1200, 0, 120);
63  m_radlen_vs_eta = new TProfile((m_name + "_radlen_vs_eta").c_str(), "Radiation lengths vs. eta", 600, -3, 3);
64  m_radlen_vs_z = new TProfile((m_name + "_radlen_vs_z").c_str(), "Radiation lengths vs. Z", 6000, -300, 300);
65  m_radlen_vs_r = new TProfile((m_name + "_radlen_vs_r").c_str(), "Radiation lengths vs. R", 1200, 0, 120);
66  m_dedx_spectrum->SetDirectory(nullptr);
67  m_radlen_spectrum->SetDirectory(nullptr);
68  m_dedx_vs_eta->SetDirectory(nullptr);
69  m_dedx_vs_z->SetDirectory(nullptr);
70  m_dedx_vs_r->SetDirectory(nullptr);
71  m_radlen_vs_eta->SetDirectory(nullptr);
72  m_radlen_vs_z->SetDirectory(nullptr);
73  m_radlen_vs_r->SetDirectory(nullptr);
74 }
MaterialAccountingStep m_errors
std::vector< GlobalPoint > m_elements
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
std::pair< double, double > range_r() const
std::pair< double, double > range_z() const
#define LogTrace(id)
const std::string & name(void) const
get the layer name
XYZVectorD XYZVector
spatial vector with cartesian internal representation
Definition: Vector3D.h:30
T perp() const
Magnitude of transverse component.
static int position[264][3]
Definition: ReadPGInfo.cc:509
MaterialAccountingStep m_accounting
MaterialAccountingGroup::~MaterialAccountingGroup ( void  )
MaterialAccountingGroup::MaterialAccountingGroup ( const MaterialAccountingGroup layer)
privatedelete

stop default copy ctor

Member Function Documentation

bool MaterialAccountingGroup::addDetector ( const MaterialAccountingDetector detector)

buffer material from a detector, if the detector is inside the DetLayer bounds

Definition at line 120 of file MaterialAccountingGroup.cc.

References inside(), m_buffer, m_counted, and MaterialAccountingDetector::material().

120  {
121  if (not inside(detector))
122  return false;
123 
124  // multiple hits in the same layer (overlaps, etc.) from a single track still count as one for averaging,
125  // since the energy deposits from the track have been already split between the different detectors
126  m_buffer += detector.material();
127  m_counted = true;
128 
129  return true;
130 }
MaterialAccountingStep m_buffer
const MaterialAccountingStep & material() const
bool inside(const MaterialAccountingDetector &detector) const
check if detector is inside any part of this layer
MaterialAccountingStep MaterialAccountingGroup::average ( void  ) const
inline

return the average normalized material accounting informations

Definition at line 91 of file MaterialAccountingGroup.h.

References m_accounting, and m_tracks.

Referenced by endOfTrack().

double MaterialAccountingGroup::averageEnergyLoss ( void  ) const
inline

return the average normalized energy loss density factor for Bethe-Bloch

Definition at line 100 of file MaterialAccountingGroup.h.

References MaterialAccountingStep::energyLoss(), m_accounting, and m_tracks.

Referenced by TrackingMaterialAnalyser::saveParameters(), savePlots(), TrackingMaterialAnalyser::saveXml(), and sigmaEnergyLoss().

100 { return m_tracks ? m_accounting.energyLoss() / m_tracks : 0.; }
double energyLoss(void) const
MaterialAccountingStep m_accounting
double MaterialAccountingGroup::averageLength ( void  ) const
inline

return the average normalized layer thickness

Definition at line 94 of file MaterialAccountingGroup.h.

References MaterialAccountingStep::length(), m_accounting, and m_tracks.

Referenced by TrackingMaterialAnalyser::saveParameters(), and sigmaLength().

94 { return m_tracks ? m_accounting.length() / m_tracks : 0.; }
double length(void) const
MaterialAccountingStep m_accounting
double MaterialAccountingGroup::averageRadiationLengths ( void  ) const
inline

return the average normalized number of radiation lengths

Definition at line 97 of file MaterialAccountingGroup.h.

References m_accounting, m_tracks, and MaterialAccountingStep::radiationLengths().

Referenced by TrackingMaterialAnalyser::saveParameters(), savePlots(), TrackingMaterialAnalyser::saveXml(), and sigmaRadiationLengths().

97 { return m_tracks ? m_accounting.radiationLengths() / m_tracks : 0.; }
double radiationLengths(void) const
MaterialAccountingStep m_accounting
const std::vector<GlobalPoint>& MaterialAccountingGroup::elements ( void  ) const
inline

Definition at line 135 of file MaterialAccountingGroup.h.

References m_elements, name(), plotFactory::plot, savePlot(), and AlCaHLTBitMon_QueryRunRegistry::string.

135 { return m_elements; }
std::vector< GlobalPoint > m_elements
void MaterialAccountingGroup::endOfTrack ( void  )

commit the buffer and reset the "already hit by this track" flag

Definition at line 132 of file MaterialAccountingGroup.cc.

References average(), PV3DBase< T, PVType, FrameType >::eta(), m_accounting, m_buffer, m_counted, m_dedx_spectrum, m_dedx_vs_eta, m_dedx_vs_r, m_dedx_vs_z, m_errors, m_radlen_spectrum, m_radlen_vs_eta, m_radlen_vs_r, m_radlen_vs_z, m_tracks, PV3DBase< T, PVType, FrameType >::perp(), and PV3DBase< T, PVType, FrameType >::z().

132  {
133  // add a detector
134  if (m_counted) {
137  ++m_tracks;
138 
139  GlobalPoint average((m_buffer.in().x() + m_buffer.out().x()) / 2.,
140  (m_buffer.in().y() + m_buffer.out().y()) / 2.,
141  (m_buffer.in().z() + m_buffer.out().z()) / 2.);
142  m_dedx_spectrum->Fill(m_buffer.energyLoss());
143  m_radlen_spectrum->Fill(m_buffer.radiationLengths());
144  m_dedx_vs_eta->Fill(average.eta(), m_buffer.energyLoss(), 1.);
145  m_dedx_vs_z->Fill(average.z(), m_buffer.energyLoss(), 1.);
146  m_dedx_vs_r->Fill(average.perp(), m_buffer.energyLoss(), 1.);
147  m_radlen_vs_eta->Fill(average.eta(), m_buffer.radiationLengths(), 1.);
148  m_radlen_vs_z->Fill(average.z(), m_buffer.radiationLengths(), 1.);
149  m_radlen_vs_r->Fill(average.perp(), m_buffer.radiationLengths(), 1.);
150  }
151  m_counted = false;
152  m_buffer = MaterialAccountingStep();
153 }
MaterialAccountingStep m_errors
MaterialAccountingStep m_buffer
MaterialAccountingStep average(void) const
return the average normalized material accounting informations
MaterialAccountingStep m_accounting
std::pair<double, double> MaterialAccountingGroup::getBoundingR ( ) const
inline

Return the bouding limit in R for the hosted Group.

Definition at line 85 of file MaterialAccountingGroup.h.

References m_boundingbox, and MaterialAccountingGroup::BoundingBox::range_r().

85 { return m_boundingbox.range_r(); };
std::pair< double, double > range_r() const
std::pair<double, double> MaterialAccountingGroup::getBoundingZ ( ) const
inline

Return the bouding limit in Z for the hosted Group.

Definition at line 88 of file MaterialAccountingGroup.h.

References m_boundingbox, and MaterialAccountingGroup::BoundingBox::range_z().

88 { return m_boundingbox.range_z(); };
std::pair< double, double > range_z() const
std::string MaterialAccountingGroup::info ( void  ) const

get some infos

Definition at line 196 of file MaterialAccountingGroup.cc.

References alignBH_cfg::fixed, m_boundingbox, m_elements, m_name, MillePedeFileConverter_cfg::out, MaterialAccountingGroup::BoundingBox::range_r(), and MaterialAccountingGroup::BoundingBox::range_z().

Referenced by name().

196  {
197  std::stringstream out;
198  out << std::setw(48) << std::left << m_name << std::right << std::fixed;
199  ;
200  out << "BBox: " << std::setprecision(1) << std::setw(6) << m_boundingbox.range_z().first << " < Z < "
201  << std::setprecision(1) << std::setw(6) << m_boundingbox.range_z().second;
202  out << ", " << std::setprecision(1) << std::setw(5) << m_boundingbox.range_r().first << " < R < "
203  << std::setprecision(1) << std::setw(5) << m_boundingbox.range_r().second;
204  out << " Elements: " << std::setw(6) << m_elements.size();
205  return out.str();
206 }
std::vector< GlobalPoint > m_elements
std::pair< double, double > range_r() const
std::pair< double, double > range_z() const
bool MaterialAccountingGroup::inside ( const MaterialAccountingDetector detector) const

check if detector is inside any part of this layer

Definition at line 91 of file MaterialAccountingGroup.cc.

References mps_fire::i, MaterialAccountingGroup::BoundingBox::inside(), LogTrace, m_boundingbox, m_elements, mag(), PV3DBase< T, PVType, FrameType >::perp(), MaterialAccountingDetector::position(), position, MaterialAccountingGroup::BoundingBox::range_r(), MaterialAccountingGroup::BoundingBox::range_z(), s_tolerance, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

Referenced by addDetector().

91  {
92  const GlobalPoint& position = detector.position();
93  // first check to see if the point is inside the bounding box
94  LogTrace("MaterialAccountingGroup") << "Testing position: (x, y, z, r) = " << position.x() << ", " << position.y()
95  << ", " << position.z() << ", " << position.perp() << std::endl;
96  if (not m_boundingbox.inside(position.perp(), position.z())) {
97  LogTrace("MaterialAccountingGroup") << "r outside of: (" << m_boundingbox.range_r().first << ", "
98  << m_boundingbox.range_r().second << "), Z ouside of: ("
99  << m_boundingbox.range_z().first << ", " << m_boundingbox.range_z().second
100  << ")" << std::endl;
101  return false;
102  } else {
103  // now check if the point is actually close enough to any element
104  LogTrace("MaterialAccountingGroup") << "r within: (" << m_boundingbox.range_r().first << ", "
105  << m_boundingbox.range_r().second << "), Z within: ("
106  << m_boundingbox.range_z().first << ", " << m_boundingbox.range_z().second
107  << ")" << std::endl;
108  for (unsigned int i = 0; i < m_elements.size(); ++i) {
109  LogTrace("MaterialAccountingGroup")
110  << "Closest testing agains(x, y, z, r): (" << m_elements[i].x() << ", " << m_elements[i].y() << ", "
111  << m_elements[i].z() << ", " << m_elements[i].perp() << ") --> " << (position - m_elements[i]).mag()
112  << " vs tolerance: " << s_tolerance << std::endl;
113  if ((position - m_elements[i]).mag2() < (s_tolerance * s_tolerance))
114  return true;
115  }
116  return false;
117  }
118 }
T perp() const
Definition: PV3DBase.h:72
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
std::vector< GlobalPoint > m_elements
T y() const
Definition: PV3DBase.h:63
std::pair< double, double > range_r() const
T z() const
Definition: PV3DBase.h:64
std::pair< double, double > range_z() const
#define LogTrace(id)
const GlobalPoint & position() const
bool inside(double r, double z) const
static int position[264][3]
Definition: ReadPGInfo.cc:509
T x() const
Definition: PV3DBase.h:62
const std::string& MaterialAccountingGroup::name ( void  ) const
inline
MaterialAccountingGroup& MaterialAccountingGroup::operator= ( const MaterialAccountingGroup layer)
privatedelete

stop default assignment operator

void MaterialAccountingGroup::savePlot ( TH1F *  plot,
const std::string &  name 
)
private

Definition at line 155 of file MaterialAccountingGroup.cc.

References svgfig::canvas(), and m_file.

Referenced by elements(), and savePlots().

155  {
156  TCanvas canvas(name.c_str(), plot->GetTitle(), 1280, 1024);
157  plot->SetFillColor(15); // grey
158  plot->SetLineColor(1); // black
159  plot->Draw("c e");
160  canvas.GetFrame()->SetFillColor(kWhite);
161  canvas.Draw();
162  canvas.SaveAs((name + ".png").c_str(), "");
163 
164  // store te plot into m_file
165  plot->SetDirectory(m_file);
166 }
const std::string & name(void) const
get the layer name
def canvas(sub, attr)
Definition: svgfig.py:482
void MaterialAccountingGroup::savePlot ( TProfile *  plot,
float  average,
const std::string &  name 
)
private

Definition at line 168 of file MaterialAccountingGroup.cc.

References svgfig::canvas(), mps_splice::line, and m_file.

168  {
169  // Nota Bene:
170  // these "line" plots are not deleted explicitly since
171  // - deleting them before saving them to a TFile will not save them
172  // - deleting them after the TFile they're stored into results in a SEGV
173  // ROOT is probably "taking care" (read: messing things up) somehow...
174  TH1F* line =
175  new TH1F((name + "_par").c_str(), "Parametrization", 1, plot->GetXaxis()->GetXmin(), plot->GetXaxis()->GetXmax());
176  line->SetBinContent(1, average);
177 
178  TCanvas canvas(name.c_str(), plot->GetTitle(), 1280, 1024);
179  plot->SetFillColor(15); // grey
180  plot->SetLineColor(1); // black
181  plot->SetLineWidth(2);
182  plot->Draw("c e6");
183  line->SetLineColor(2); // red
184  line->SetLineWidth(2);
185  line->Draw("same");
186  canvas.GetFrame()->SetFillColor(kWhite);
187  canvas.Draw();
188  canvas.SaveAs((name + ".png").c_str(), "");
189 
190  // store te plots into m_file
191  plot->SetDirectory(m_file);
192  line->SetDirectory(m_file);
193 }
const std::string & name(void) const
get the layer name
def canvas(sub, attr)
Definition: svgfig.py:482
void MaterialAccountingGroup::savePlots ( void  )

save the plots

Definition at line 208 of file MaterialAccountingGroup.cc.

References averageEnergyLoss(), averageRadiationLengths(), m_dedx_spectrum, m_dedx_vs_eta, m_dedx_vs_r, m_dedx_vs_z, m_file, m_name, m_radlen_spectrum, m_radlen_vs_eta, m_radlen_vs_r, m_radlen_vs_z, and savePlot().

Referenced by name(), and TrackingMaterialAnalyser::saveLayerPlots().

208  {
209  m_file = new TFile((m_name + ".root").c_str(), "RECREATE");
210  savePlot(m_dedx_spectrum, m_name + "_dedx_spectrum");
211  savePlot(m_radlen_spectrum, m_name + "_radlen_spectrum");
212  savePlot(m_dedx_vs_eta, averageEnergyLoss(), m_name + "_dedx_vs_eta");
213  savePlot(m_dedx_vs_z, averageEnergyLoss(), m_name + "_dedx_vs_z");
214  savePlot(m_dedx_vs_r, averageEnergyLoss(), m_name + "_dedx_vs_r");
215  savePlot(m_radlen_vs_eta, averageRadiationLengths(), m_name + "_radlen_vs_eta");
218  m_file->Write();
219  m_file->Close();
220 
221  delete m_file;
222 }
double averageRadiationLengths(void) const
return the average normalized number of radiation lengths
double averageEnergyLoss(void) const
return the average normalized energy loss density factor for Bethe-Bloch
void savePlot(TH1F *plot, const std::string &name)
double MaterialAccountingGroup::sigmaEnergyLoss ( void  ) const
inline

return the sigma of the normalized energy loss density factor for Bethe-Bloch

Definition at line 115 of file MaterialAccountingGroup.h.

References averageEnergyLoss(), MaterialAccountingStep::energyLoss(), m_errors, m_tracks, and mathSSE::sqrt().

Referenced by TrackingMaterialAnalyser::saveParameters().

115  {
117  }
MaterialAccountingStep m_errors
double energyLoss(void) const
double averageEnergyLoss(void) const
return the average normalized energy loss density factor for Bethe-Bloch
T sqrt(T t)
Definition: SSEVec.h:18
double MaterialAccountingGroup::sigmaLength ( void  ) const
inline

return the sigma of the normalized layer thickness

Definition at line 103 of file MaterialAccountingGroup.h.

References averageLength(), MaterialAccountingStep::length(), m_errors, m_tracks, and mathSSE::sqrt().

Referenced by TrackingMaterialAnalyser::saveParameters().

103  {
105  }
MaterialAccountingStep m_errors
double length(void) const
double averageLength(void) const
return the average normalized layer thickness
T sqrt(T t)
Definition: SSEVec.h:18
double MaterialAccountingGroup::sigmaRadiationLengths ( void  ) const
inline

return the sigma of the normalized number of radiation lengths

Definition at line 108 of file MaterialAccountingGroup.h.

References averageRadiationLengths(), m_errors, m_tracks, MaterialAccountingStep::radiationLengths(), and mathSSE::sqrt().

Referenced by TrackingMaterialAnalyser::saveParameters().

108  {
111  : 0.;
112  }
double averageRadiationLengths(void) const
return the average normalized number of radiation lengths
MaterialAccountingStep m_errors
double radiationLengths(void) const
T sqrt(T t)
Definition: SSEVec.h:18
unsigned int MaterialAccountingGroup::tracks ( void  ) const
inline

return the number of tracks that hit this layer

Definition at line 120 of file MaterialAccountingGroup.h.

References m_tracks.

Referenced by TrackingMaterialAnalyser::saveParameters().

120 { return m_tracks; }

Member Data Documentation

MaterialAccountingStep MaterialAccountingGroup::m_accounting
private
BoundingBox MaterialAccountingGroup::m_boundingbox
private
MaterialAccountingStep MaterialAccountingGroup::m_buffer
private

Definition at line 148 of file MaterialAccountingGroup.h.

Referenced by addDetector(), and endOfTrack().

bool MaterialAccountingGroup::m_counted
private

Definition at line 147 of file MaterialAccountingGroup.h.

Referenced by addDetector(), and endOfTrack().

TH1F* MaterialAccountingGroup::m_dedx_spectrum
private
TProfile* MaterialAccountingGroup::m_dedx_vs_eta
private
TProfile* MaterialAccountingGroup::m_dedx_vs_r
private
TProfile* MaterialAccountingGroup::m_dedx_vs_z
private
std::vector<GlobalPoint> MaterialAccountingGroup::m_elements
private

Definition at line 142 of file MaterialAccountingGroup.h.

Referenced by elements(), info(), inside(), and MaterialAccountingGroup().

MaterialAccountingStep MaterialAccountingGroup::m_errors
private
TFile* MaterialAccountingGroup::m_file
mutableprivate

Definition at line 162 of file MaterialAccountingGroup.h.

Referenced by savePlot(), and savePlots().

std::string MaterialAccountingGroup::m_name
private

Definition at line 141 of file MaterialAccountingGroup.h.

Referenced by info(), MaterialAccountingGroup(), name(), and savePlots().

TH1F* MaterialAccountingGroup::m_radlen_spectrum
private
TProfile* MaterialAccountingGroup::m_radlen_vs_eta
private
TProfile* MaterialAccountingGroup::m_radlen_vs_r
private
TProfile* MaterialAccountingGroup::m_radlen_vs_z
private
unsigned int MaterialAccountingGroup::m_tracks
private
double const MaterialAccountingGroup::s_tolerance
staticprivate
Initial value:
=
0.01

Definition at line 165 of file MaterialAccountingGroup.h.

Referenced by inside(), and MaterialAccountingGroup().