BOSS 7.0.2
BESIII Offline Software System
Loading...
Searching...
No Matches
Tof/tofcalgsec/tofcalgsec-00-02-21/tofcalgsec/calib_etf_weight.h
Go to the documentation of this file.
1#ifndef CALIB_ETF_WEIGHT_H
2#define CALIB_ETF_WEIGHT_H
3
4#include "tofcalgsec/TofCalib.h"
5
6const int nEtfWeight = 4;
7
8class calib_etf_weight:public TofCalib {
9 public:
11 m_name = string("calib_etf_weight");
12 }
13
14 void calculate_funcs( const Record* r ) {
15 double tleft = r->tleft();
16 double tright = r->tright();
17 double z = r->zrhit();
18
19 funcs[0] = tright-tleft;
20 funcs[1] = funcs[0]*z;
21 funcs[2] = funcs[1]*z;
22 funcs[3] = funcs[2]*z;
23
24 return;
25 }
26
27 void calculate_y(const Record* r) {
28 y = 0.0 - (r->tright());
29 return;
30 }
31
33 if( data->size() > 0 ) {
34 std::vector<Record*>::iterator iter = data->begin();
35 for( ; iter!=data->end(); iter++ ) {
37 double tcorr = 0.0;
38 for( int i=0; i<X.num_row(); i++ ) {
39 tcorr += X[i]*funcs[i];
40 }
41 (*iter)->setT0( tcorr + (*iter)->tright() );
42 }
43 }
44 return;
45 }
46
47};
48
49#endif
TTree * data
EvtStreamInputIterator< typename Generator::result_type > iter(Generator gen, int N=0)
std::vector< Record * > RecordSet