Belle II Software development
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
17namespace Belle2 {
22
26
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 };
47
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.
hitXPDerivate()
empty constructor
ClassDef(hitXPDerivate, 3)
needed by root
hitXP()
empty constructor of the class
Definition hitXP.h:65
Abstract base class for different kinds of events.