Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef WC_DATA_H
00017 #define WC_DATA_H
00018
00019
00020
00021 #include <vector>
00022
00023
00024
00025 #include "TObject.h"
00026
00027
00028
00029 using namespace std;
00030
00031
00032
00033
00034
00035
00036 class WC_Data : public TObject {
00037
00038 public:
00039
00040
00041
00042 WC_Data();
00043
00044
00045
00046 ~WC_Data();
00047
00048
00049
00050
00051
00052 void Reset();
00053
00054 private:
00055
00056 friend class WC_SD;
00057
00058 int nWC;
00059
00060 vector<int> id;
00061 vector<int> tr;
00062
00063 vector<double> e;
00064 vector<double> t;
00065
00066 vector<double> tx;
00067 vector<double> ty;
00068 vector<double> tz;
00069
00070 vector<double> txl;
00071 vector<double> tyl;
00072 vector<double> tzl;
00073
00074 vector<double> x;
00075 vector<double> y;
00076 vector<double> z;
00077
00078 vector<double> xl;
00079 vector<double> yl;
00080 vector<double> zl;
00081
00082 ClassDef( WC_Data, 1 )
00083 };
00084
00085 #endif