BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
calib_barrel_right_offset2_bunch3_4.h
Go to the documentation of this file.
1#ifndef CALIB_BARREL_RIGHT_OFFSET2_BUNCH3_4_H
2#define CALIB_BARREL_RIGHT_OFFSET2_BUNCH3_4_H
3
5
7
9 public:
11 m_name = string("calib_barrel_right_offset2_bunch3");
12 }
13
14 void calculate_funcs( const Record* r ) {
15 double z = r->zrhit();
16 double t = r->tright();
17 double t0 = r->phi();
18 if( r->run()<0 || ( (static_cast<int>(t0/(8.0*12000./499.8/8./4. )+0.1))%4==3 ) ) {
19 if( z<5.0 && abs(t)<10.0 ) {
20 funcs[0] = 1.0;
21 funcs[1] = z;
22 funcs[2] = z*z;
23 funcs[3] = z*z*z;
24 funcs[4] = z*z*z*z;
25 funcs[5] = z*z*z*z*z;
26 funcs[6] = z*z*z*z*z*z;
27 }
28 else {
29 funcs[0] = 0.0;
30 funcs[1] = 0.0;
31 funcs[2] = 0.0;
32 funcs[3] = 0.0;
33 funcs[4] = 0.0;
34 funcs[5] = 0.0;
35 funcs[6] = 0.0;
36 }
37 }
38 return;
39 }
40
41 void calculate_y(const Record* r) {
42 if( r->run()<0 || ( (static_cast<int>((r->phi())/(8.0*12000./499.8/8./4. )+0.1))%4==3 ) ) {
43 if( r->zrhit() < 5.0 ) {
44 y = r->tright();
45 }
46 else {
47 y = 0.0;
48 }
49 }
50 return;
51 }
52
54 if( data->size() > 0 ) {
55 std::vector<Record*>::iterator iter = data->begin();
56 for( ; iter!=data->end(); iter++ ) {
57 if( (*iter)->run() < 0 ) return;
58 if ((static_cast<int>(((*iter)->phi())/(8.0*12000./499.8/8./4. )+0.1))%4==3){
59 if( (*iter)->zrhit() >= 0.0 ) continue;
61 double tcorr = 0.0;
62 for( int i=0; i<X.num_row(); i++ ) {
63 tcorr += X[i]*funcs[i];
64 }
65 (*iter)->settright( (*iter)->tright() - tcorr );
66 }
67 }
68 }
69 return;
70 }
71
72};
73
74#endif
TTree * data
std::vector< Record * > RecordSet
Definition: TofDataSet.h:98
EvtStreamInputIterator< typename Generator::result_type > iter(Generator gen, int N=0)
TTree * t
Definition: binning.cxx:23
const int nBarrelRight_Offset2_bunch3_4
double tright() const
Definition: TofDataSet.h:60
double phi() const
Definition: TofDataSet.h:65
int run() const
Definition: TofDataSet.h:53
double zrhit() const
Definition: TofDataSet.h:61
HepVector funcs
Definition: TofCalib.h:41
string m_name
Definition: TofCalib.h:36
HepVector X
Definition: TofCalib.h:39
double y
Definition: TofCalib.h:42