Belle II Software  release-08-01-10
hitXPDerivate.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 #pragma once
9 
10 #include <mdst/dataobjects/MCParticle.h>
11 #include <svd/dataobjects/SVDCluster.h>
12 #include <svd/dataobjects/SVDTrueHit.h>
13 #include <pxd/dataobjects/PXDTrueHit.h>
14 #include <vxd/geometry/SensorInfoBase.h>
15 #include <tracking/dataobjects/hitXP.h>
16 
17 namespace Belle2 {
27  class hitXPDerivate: public hitXP {
28 
29  public:
30 
33 
37  hitXPDerivate(const SVDTrueHit& hit, const SVDCluster& cluster, const MCParticle& particle, const VXD::SensorInfoBase& sensor);
38 
42  hitXPDerivate(const PXDTrueHit& hit, const MCParticle& particle, const VXD::SensorInfoBase& sensor);
43 
46  };
48 }
A Class to store the Monte Carlo particle information.
Definition: MCParticle.h:32
Class PXDTrueHit - Records of tracks that either enter or leave the sensitive volume.
Definition: PXDTrueHit.h:31
The SVD Cluster class This class stores all information about reconstructed SVD clusters.
Definition: SVDCluster.h:29
Class SVDTrueHit - Records of tracks that either enter or leave the sensitive volume.
Definition: SVDTrueHit.h:33
Base class to provide Sensor Information for PXD and SVD.
This class is the derivate of HitXP, and complete it with a constructor that use all other complex ty...
Definition: hitXPDerivate.h:27
hitXPDerivate()
empy constructor
Definition: hitXPDerivate.h:32
ClassDef(hitXPDerivate, 2)
needed by root
This class collects some information of a TrueHit, using SVDCLuster and MCParticle information too.
Definition: hitXP.h:32
Abstract base class for different kinds of events.