Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef TF_DATA_H
00017 #define TF_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 TF_Data : public TObject {
00037
00038 public:
00039
00040
00041
00042 TF_Data();
00043
00044
00045
00046 ~TF_Data();
00047
00048
00049
00050
00051
00052 void Reset();
00053
00054 private:
00055
00056 friend class TF_SD;
00057
00058 int nTF;
00059
00060 vector<int> id;
00061 vector<int> tr;
00062
00063 vector<double> e;
00064 vector<double> tt;
00065 vector<double> t;
00066
00067 vector<double> tx;
00068 vector<double> ty;
00069 vector<double> tz;
00070
00071 vector<double> txl;
00072 vector<double> tyl;
00073 vector<double> tzl;
00074
00075 vector<double> x;
00076 vector<double> y;
00077 vector<double> z;
00078
00079 vector<double> xl;
00080 vector<double> yl;
00081 vector<double> zl;
00082
00083 ClassDef( TF_Data, 1 )
00084 };
00085
00086 #endif