Belle II Software  release-05-02-19
PXDSimHit.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2010-2014 Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Andreas Moll, Peter Kvasnicka, Martin Ritter *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 #ifndef PXD_DATAOBJECTS_PXDSIMHIT_H
13 #define PXD_DATAOBJECTS_PXDSIMHIT_H
14 
15 #include <vxd/dataobjects/VXDSimHit.h>
16 
17 namespace Belle2 {
28  class PXDSimHit : public VXDSimHit {
29  public:
32 
40  PXDSimHit(VxdID sensorID, int pdg, float globalTime, const float* posIn,
41  const float* posOut): VXDSimHit(sensorID, pdg, globalTime, posIn, posOut)
42  {}
43 
44  private:
46  };
48 } // end namespace Belle2
49 
50 #endif
Belle2::VxdID
Class to uniquely identify a any structure of the PXD and SVD.
Definition: VxdID.h:43
Belle2::PXDSimHit::PXDSimHit
PXDSimHit()
default constructor for ROOT
Definition: PXDSimHit.h:31
Belle2::RelationsInterface::ClassDef
ClassDef(RelationsInterface, 0)
defines interface for accessing relations of objects in StoreArray.
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::PXDSimHit::PXDSimHit
PXDSimHit(VxdID sensorID, int pdg, float globalTime, const float *posIn, const float *posOut)
Standard constructor.
Definition: PXDSimHit.h:40
Belle2::PXDSimHit
Class PXDSimHit - Geant4 simulated hit for the PXD.
Definition: PXDSimHit.h:28
Belle2::VXDSimHit
Class VXDSimHit - Geant4 simulated hit for the VXD.
Definition: VXDSimHit.h:32