Belle II Software development
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
15namespace Belle2 {
33 class SVDTrueHit : public VXDTrueHit {
34 public:
37
49 SVDTrueHit(VxdID sensorID, float* posEntry, float* posMidPoint, float* posExit,
50 float* momEntry, float* momMidPoint, float* momExit, float energyDep, float globalTime):
51 VXDTrueHit(sensorID, posEntry, posMidPoint, posExit,
52 momEntry, momMidPoint, momExit, energyDep, globalTime)
53 {}
54
55
56
58 };
59
61} // end namespace Belle2
62
63#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:49
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.