BmnRoot
Loading...
Searching...
No Matches
BmnMwpcTrack.h
Go to the documentation of this file.
1#ifndef BMNMWPCTRACK_H
2#define BMNMWPCTRACK_H
3
4#include "BmnTrack.h"
5
6using namespace std;
7
8class BmnMwpcTrack : public BmnTrack {
9public:
10
13
15 virtual ~BmnMwpcTrack();
16
17
18 vector<Double_t> GetCoord(){
19 return fCoord;
20 }
21
22 vector<Double_t> GetClust(){
23 return fClust;
24 }
25
26 void SetCoord(vector<Double_t> Coord){
27 fCoord = Coord;
28 }
29
30 void SetClust(vector<Double_t> Clust){
31 fClust = Clust;
32 }
33
34
35private:
36
37 vector<Double_t> fCoord;
38 vector<Double_t> fClust;
39
40 ClassDef(BmnMwpcTrack, 1);
41
42};
43
44#endif
vector< Double_t > GetCoord()
virtual ~BmnMwpcTrack()
vector< Double_t > GetClust()
void SetClust(vector< Double_t > Clust)
void SetCoord(vector< Double_t > Coord)
STL namespace.