BmnRoot
Loading...
Searching...
No Matches
BmnGemAlignCorrections.h
Go to the documentation of this file.
1#ifndef BMNGEMALIGNCORRECTIONS_H
2#define BMNGEMALIGNCORRECTIONS_H 1
3
4#include <iostream>
5#include <TNamed.h>
6#include <TVector3.h>
8
9using namespace std;
10
12public:
13
15
16 BmnGemAlignCorrections(Int_t, Int_t, TVector3);
17
19
20 void SetStation(Int_t num) {
21 fStation = num;
22 }
23
24 void SetModule(Int_t num) {
25 fModule = num;
26 }
27
28 Int_t GetStation() {
29 return fStation;
30 }
31
32 Int_t GetModule() {
33 return fModule;
34 }
35
36private:
37 Int_t fStation;
38 Int_t fModule;
39
40 ClassDef(BmnGemAlignCorrections, 1)
41};
42
43#endif
STL namespace.