/[PAMELA software]/PamVMC_update/trk/include/pCombTrans.h
ViewVC logotype

Annotation of /PamVMC_update/trk/include/pCombTrans.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (hide annotations) (download) (vendor branch)
Tue Oct 15 15:51:26 2013 UTC (11 years, 1 month ago) by formato
Branch: MAIN, rel
CVS Tags: reltag, HEAD
Changes since 1.1: +0 -0 lines
File MIME type: text/plain
PamVMC update

1 formato 1.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