BOSS 7.0.4
BESIII Offline Software System
Loading...
Searching...
No Matches
Tof/tofcalgsec/tofcalgsec-00-02-23/tofcalgsec/calib_etf_right.h
Go to the documentation of this file.
1#ifndef CALIB_ETF_RIGHT_H
2#define CALIB_ETF_RIGHT_H
3
4#include "tofcalgsec/TofCalib.h"
5
6const int nEtfRight = 13;
7
8class calib_etf_right:public TofCalib {
9 public:
11 m_name = string("calib_etf_right");
12 }
13
14 void calculate_funcs( const Record* r ) {
15 double q = r->qright();
16 double z = r->zrhit();
17
18 if( q<0.0 ) {
19 for( int i=0; i<nEtfLeft; i++ ) {
20 funcs[i] = 0.0;
21 }
22 }
23 else {
24 funcs[0] = 1.0;
25 funcs[1] = 1./sqrt(q);
26 funcs[2] = q;
27 funcs[3] = q*q;
28 funcs[4] = q*q*q;
29 funcs[5] = q*q*q*q;
30 funcs[6] = z/sqrt(q);
31 funcs[7] = 1.0/q;
32 funcs[8] = z/q;
33 funcs[9] = z*q;
34 funcs[10] = z;
35 funcs[11] = z*z;
36 funcs[12] = z*z*z;
37 }
38
39 return;
40 }
41
42 void calculate_y(const Record* r) {
43 y = r->tright() - r->texp();
44 return;
45 }
46
48 if( data->size() > 0 ) {
49 std::vector<Record*>::iterator iter = data->begin();
50 for( ; iter!=data->end(); iter++ ) {
52 double tcorr = 0.0;
53 for( int i=0; i<X.num_row(); i++ ) {
54 tcorr += X[i]*funcs[i];
55 }
56 (*iter)->settright( (*iter)->tright() - tcorr - (*iter)->texp() );
57 }
58 }
59 return;
60 }
61
62};
63
64#endif
TTree * data
EvtStreamInputIterator< typename Generator::result_type > iter(Generator gen, int N=0)
std::vector< Record * > RecordSet
****INTEGER imax DOUBLE PRECISION m_pi *DOUBLE PRECISION m_amfin DOUBLE PRECISION m_Chfin DOUBLE PRECISION m_Xenph DOUBLE PRECISION m_sinw2 DOUBLE PRECISION m_GFermi DOUBLE PRECISION m_MfinMin DOUBLE PRECISION m_ta2 INTEGER m_out INTEGER m_KeyFSR INTEGER m_KeyQCD *COMMON c_Semalib $ !copy of input $ !CMS energy $ !beam mass $ !final mass $ !beam charge $ !final charge $ !smallest final mass $ !Z mass $ !Z width $ !EW mixing angle $ !Gmu Fermi $ alphaQED at q
Definition: KKsem.h:33