BmnRoot
Loading...
Searching...
No Matches
BmnBdHit.h
Go to the documentation of this file.
1// -------------------------------------------------------------------------
2// ----- BmnBdHit header file -----
3// ----- Created 12/07/18 by A. Zinchenko -----
4// -------------------------------------------------------------------------
5
12#ifndef BMNBDHIT_H
13#define BMNBDHIT_H 1
14
15#include "FairHit.h"
16#include <TObject.h>
17
18#include <math.h>
19#include <iostream>
20
21class BmnBdHit : public FairHit
22{
23
24 public:
25
28
30 BmnBdHit(Int_t detUID, TVector3 posHit, TVector3 posHitErr, Int_t pointIndx);
31
32 Int_t GetStripNumber() const { return fStrip; } // strip number
33 Int_t GetStripPoints() const { return GetNLinks(); } // number of points per strip
34
36 virtual ~BmnBdHit();
37
38private:
39 Int_t fStrip;
40
41 ClassDef(BmnBdHit, 1);
42
43};
44
45#endif
virtual ~BmnBdHit()
BmnBdHit(Int_t detUID, TVector3 posHit, TVector3 posHitErr, Int_t pointIndx)
Int_t GetStripNumber() const
Definition BmnBdHit.h:32
Int_t GetStripPoints() const
Definition BmnBdHit.h:33