Belle II Software  release-05-01-25
Ph1bpipeSimHit.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2010-2011 Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Martin Ritter, Igal Jaegle *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #ifndef Ph1bpipeSIMHIT_H
12 #define Ph1bpipeSIMHIT_H
13 
14 // ROOT
15 #include <TObject.h>
16 
17 namespace Belle2 {
30  class Ph1bpipeSimHit : public TObject {
31  public:
34 
35 
39  Ph1bpipeSimHit(float energyDep, int detNb):
40  m_energyDep(energyDep), m_detNb(detNb) {}
41 
43  float getEnergyDep() const { return m_energyDep; }
45  int getdetNb() const { return m_detNb; }
46 
47 
48  private:
50  float m_energyDep;
52  int m_detNb;
53 
54  ClassDef(Ph1bpipeSimHit, 1)
55  };
56 
58 } // end namespace Belle2
59 
60 #endif
Belle2::Ph1bpipeSimHit::m_energyDep
float m_energyDep
Deposited energy in electrons.
Definition: Ph1bpipeSimHit.h:58
Belle2::Ph1bpipeSimHit::Ph1bpipeSimHit
Ph1bpipeSimHit()
default constructor for ROOT
Definition: Ph1bpipeSimHit.h:41
Belle2::Ph1bpipeSimHit::getEnergyDep
float getEnergyDep() const
Return the energy deposition in electrons.
Definition: Ph1bpipeSimHit.h:51
Belle2::Ph1bpipeSimHit::m_detNb
int m_detNb
pipe number
Definition: Ph1bpipeSimHit.h:60
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::Ph1bpipeSimHit
ClassPh1bpipeSimHit - Geant4 simulated hit for the Ph1bpipe detector.
Definition: Ph1bpipeSimHit.h:38
Belle2::Ph1bpipeSimHit::getdetNb
int getdetNb() const
Return the TPC number.
Definition: Ph1bpipeSimHit.h:53