Belle II Software development
WireHitMC.cc
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//-----------------------------------------------------------------------------
10// Description : A class to represent a MC wire hit in CDC.
11//-----------------------------------------------------------------------------
12
13#include "trg/cdc/WireHitMC.h"
14
15namespace Belle2 {
20
22 const TRGCDCWireHit* wh)
23 : _wire(w),
24 _hit(wh),
25 _distance(), // 2019/07/31 by ytlai
26 _energy(),
27 _hep(),
29 {
30 }
31
35
37} // namespace Belle2
38
int _leftRight
leftright info
Definition WireHitMC.h:91
float _distance
distance
Definition WireHitMC.h:85
const TRGCDCWire * _wire
pointer to TRGCDCWire
Definition WireHitMC.h:73
const TRGCDCWireHit * _hit
pointer to TRGCDCWireHit
Definition WireHitMC.h:75
const TRGCDCTrackMC * _hep
pointer to TRGCDCTrackMC
Definition WireHitMC.h:89
A class to represent a wire hit in CDC.
Definition WireHit.h:33
A class to represent a wire in CDC.
Definition Wire.h:56
virtual ~TRGCDCWireHitMC()
Destructor.
Definition WireHitMC.cc:32
TRGCDCWireHitMC(const TRGCDCWire *, const TRGCDCWireHit *)
Constructor.
Definition WireHitMC.cc:21
Abstract base class for different kinds of events.