BmnRoot
Loading...
Searching...
No Matches
BmnIdentifiableTrack.h
Go to the documentation of this file.
1/*
2 * File: BmnIdentifiableTrack.h
3 * Author: plot
4 *
5 * Created on September 28, 2017, 4:24 PM
6 */
7
8#ifndef BMNIDENTIFIABLETRACK_H
9#define BMNIDENTIFIABLETRACK_H
10
11#include "TObject.h"
12
13class BmnIdentifiableTrack : public TObject {
14
15private:
16 Double_t fMassQ, fBeta, fLength, fPq, fTime;
17 Double_t fTOF700Amplitude;
18 Int_t fTOF700Plane, fTOF700Strip, fTOF700StripHits;
19
20public:
21 //constructor
23 //destructor
25
26 //accessors
27 Double_t GetMassQ() const { return fMassQ; }
28 Double_t GetBeta() const { return fBeta; }
29 Double_t GetLength() const { return fLength; }
30 Double_t GetPq() const { return fPq; }
31 Double_t GetTime() const { return fTime; }
32 Int_t GetTOF700Plane() const { return fTOF700Plane; }
33 Int_t GetTOF700Strip() const { return fTOF700Strip; }
34 Double_t GetTOF700Amplitude() const { return fTOF700Amplitude; }
35 Int_t GetTOF700StripHits() const { return fTOF700StripHits; }
36
37 //modifiers
38 void SetMassQ(Double_t massQ) {fMassQ = massQ;}
39 void SetBeta(Double_t beta) {fBeta = beta;}
40 void SetLength(Double_t length) {fLength = length;}
41 void SetPq(Double_t pq) {fPq = pq;}
42 void SetTime(Double_t time) {fTime = time;}
43 void SetTOF700Plane(Int_t tof700Plane) {fTOF700Plane = tof700Plane;}
44 void SetTOF700Strip(Int_t tof700Strip) {fTOF700Strip = tof700Strip;}
45 void SetTOF700Amplitude(Double_t tof700Amplitude) {fTOF700Amplitude = tof700Amplitude;}
46 void SetTOF700StripHits(Int_t tof700Strip) {fTOF700Strip = tof700Strip;}
47
49};
50
51#endif /* BMNIDENTIFIABLETRACK_H */
52
ClassDef(BmnIdentifiableTrack, 1)
void SetTime(Double_t time)
void SetTOF700Strip(Int_t tof700Strip)
void SetTOF700Amplitude(Double_t tof700Amplitude)
void SetMassQ(Double_t massQ)
void SetBeta(Double_t beta)
void SetTOF700Plane(Int_t tof700Plane)
Double_t GetTOF700Amplitude() const
void SetLength(Double_t length)
virtual ~BmnIdentifiableTrack()
void SetTOF700StripHits(Int_t tof700Strip)