Belle II Software development
PXDTrueHit.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
11#include <vxd/dataobjects/VXDTrueHit.h>
12
13namespace Belle2 {
31 class PXDTrueHit : public VXDTrueHit {
32 public:
35
47 PXDTrueHit(VxdID sensorID, float* posEntry, float* posMidPoint, float* posExit,
48 float* momEntry, float* momMidPoint, float* momExit, float energyDep, float globalTime):
49 VXDTrueHit(sensorID, posEntry, posMidPoint, posExit,
50 momEntry, momMidPoint, momExit, energyDep, globalTime)
51 {}
52
54 };
55
57} // end namespace Belle2
Class PXDTrueHit - Records of tracks that either enter or leave the sensitive volume.
Definition: PXDTrueHit.h:31
PXDTrueHit(VxdID sensorID, float *posEntry, float *posMidPoint, float *posExit, float *momEntry, float *momMidPoint, float *momExit, float energyDep, float globalTime)
Constructor.
Definition: PXDTrueHit.h:47
PXDTrueHit()
Default constructor for ROOT IO.
Definition: PXDTrueHit.h:34
ClassDef(RelationsInterface, 0)
defines interface for accessing relations of objects in StoreArray.
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.