Parent Directory | Revision Log
PamVMC update
1 | #ifndef PCOMBTRANS_H |
2 | #define PCOMBTRANS_H |
3 | #include <iostream> |
4 | #include <map> |
5 | #include "TObject.h" |
6 | |
7 | struct pCombTrans : public TObject { |
8 | Double_t fomega; |
9 | Double_t fbeta; |
10 | Double_t fgamma; |
11 | Double_t fdx; |
12 | Double_t fdy; |
13 | Double_t fdz; |
14 | |
15 | pCombTrans(): fomega(0.), fbeta(0.), fgamma(0.), fdx(0.), fdy(0.), fdz(0.){}; |
16 | pCombTrans(Double_t omega, Double_t beta, Double_t gamma, Double_t dx, Double_t dy, Double_t dz): fomega(omega), fbeta(beta), fgamma(gamma), fdx(dx), fdy(dy), fdz(dz){}; |
17 | ~pCombTrans() { }; |
18 | }; |
19 | |
20 | typedef map<Int_t, pCombTrans*> CombTransMap; |
21 | |
22 | #endif //PCOMBTRANS |
23 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |