ATLAS Offline Software
InDetBasicPlot.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
12 
13 #include "InDetBasicPlot.h"
14 #include <cmath>
15 using namespace IDPVM;
16 
17 InDetBasicPlot::InDetBasicPlot(InDetPlotBase* pParent, const std::string& sDir) :
18  InDetPlotBase(pParent, sDir)
19  {
20 
21  //nop
22 
23 }
24 
25 void
27 
28  // book(m_my_histo, "my_histo");
29  // book(m_my_second_histo, "my_second_histo");
30 
31 }
32 
33 void
35 
36  // fillHisto(m_my_histo, particle.eta());
37 
38 }
39 
40 void
42 
43  // fillHisto(m_my_second_histo, particle.phi());
44 
45 }
46 
47 void
49 
50  // nop
51 
52 }
IDPVM
Class to retrieve associated truth from a track, implementing a cached response.
Definition: InDetPhysValMonitoringTool.h:55
InDetBasicPlot::initializePlots
void initializePlots()
Definition: InDetBasicPlot.cxx:26
python.copyTCTOutput.sDir
sDir
Definition: copyTCTOutput.py:60
InDetPhysValMonitoringUtilities.h
InDetPlotBase
Mixin class to give extra capabilities to plots such as ATH_MSG and an easier booking interface,...
Definition: InDetPlotBase.h:33
InDetBasicPlot.h
xAOD::TruthParticle_v1
Class describing a truth particle in the MC record.
Definition: TruthParticle_v1.h:37
InDetBasicPlot::fill
void fill(const xAOD::TrackParticle &particle)
Definition: InDetBasicPlot.cxx:41
xAOD::TrackParticle_v1
Class describing a TrackParticle.
Definition: TrackParticle_v1.h:43
InDetBasicPlot::finalizePlots
void finalizePlots()
Definition: InDetBasicPlot.cxx:48
InDetBasicPlot::InDetBasicPlot
InDetBasicPlot(InDetPlotBase *pParent, const std::string &dirName)
Definition: InDetBasicPlot.cxx:17