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 };
46} // end namespace Belle2
47
48#endif
ClassDef(RelationsInterface, 0)
defines interface for accessing relations of objects in StoreArray.
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
Class VXDSimHit - Geant4 simulated hit for the VXD.
Definition: VXDSimHit.h:30
Class to uniquely identify a any structure of the PXD and SVD.
Definition: VxdID.h:33
Abstract base class for different kinds of events.