Belle II Software  release-08-01-10
SVDTrueHit.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #pragma once
10 #ifndef SVD_DATAOBJECTS_SVDTRUEHIT_H
11 #define SVD_DATAOBJECTS_SVDTRUEHIT_H
12 
13 #include <vxd/dataobjects/VXDTrueHit.h>
14 
15 namespace Belle2 {
33  class SVDTrueHit : public VXDTrueHit {
34  public:
37 
50  SVDTrueHit(VxdID sensorID, float* posEntry, float* posMidPoint, float* posExit,
51  float* momEntry, float* momMidPoint, float* momExit, float energyDep, float globalTime):
52  VXDTrueHit(sensorID, posEntry, posMidPoint, posExit,
53  momEntry, momMidPoint, momExit, energyDep, globalTime)
54  {}
55 
56 
57 
59  };
60 
62 } // end namespace Belle2
63 
64 #endif
ClassDef(RelationsInterface, 0)
defines interface for accessing relations of objects in StoreArray.
Class SVDTrueHit - Records of tracks that either enter or leave the sensitive volume.
Definition: SVDTrueHit.h:33
SVDTrueHit(VxdID sensorID, float *posEntry, float *posMidPoint, float *posExit, float *momEntry, float *momMidPoint, float *momExit, float energyDep, float globalTime)
Constructor.
Definition: SVDTrueHit.h:50
SVDTrueHit()
Default constructor for ROOT IO.
Definition: SVDTrueHit.h:36
Class VXDTrueHit - Records of tracks that either enter or leave the sensitive volume.
Definition: VXDTrueHit.h:36
Class to uniquely identify a any structure of the PXD and SVD.
Definition: VxdID.h:33
Abstract base class for different kinds of events.