Belle II Software development
SVDSimHit.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_SVDSIMHIT_H
11#define SVD_DATAOBJECTS_SVDSIMHIT_H
12
13#include <vxd/dataobjects/VXDSimHit.h>
14
15namespace Belle2 {
26 class SVDSimHit : public VXDSimHit {
27 public:
30
38 SVDSimHit(VxdID sensorID, int pdg, float globalTime, const float* posIn,
39 const float* posOut): VXDSimHit(sensorID, pdg, globalTime, posIn, posOut)
40 {}
41
42 private:
44 };
45
46} // end namespace Belle2
47
48#endif
Class SVDSimHit - Geant4 simulated hit for the SVD.
Definition SVDSimHit.h:26
SVDSimHit()
default constructor for ROOT
Definition SVDSimHit.h:29
SVDSimHit(VxdID sensorID, int pdg, float globalTime, const float *posIn, const float *posOut)
Standard constructor.
Definition SVDSimHit.h:38
VXDSimHit()
default constructor for ROOT
Definition VXDSimHit.h:33
Class to uniquely identify a any structure of the PXD and SVD.
Definition VxdID.h:33
Abstract base class for different kinds of events.