4 int rBin, phiBin, zBin;
8 float efficiency0, x[400], y[400];
9 TTree*
t =
new TTree(
"effTree",
"colEff" );
12 TH1F* h1 =
new TH1F(
"h1",
"time distr.(ns)", 400, 0, 20 );
15 t->Branch(
"rBin", &rBin,
"rBin/I" );
16 t->Branch(
"phiBin", &phiBin,
"phiBin/I" );
17 t->Branch(
"zBin", &zBin,
"zBin/I" );
18 t->Branch(
"efficiency0", &efficiency0,
"efficiency0/F" );
19 t->Branch(
"x", x,
"x[400]/F" );
20 t->Branch(
"y", y,
"y[400]/F" );
22 for ( Int_t i = 0; i <
nR; i++ )
25 for ( Int_t j = 0; j <
nPhi; j++ )
28 for ( Int_t k = 0; k <
nZ; k++ )
30 int rPos = 400 + i * 10;
32 "/ihepbatch/besd12/liuy/EndcapTof/OpInETof2/results/%d/timeSta_%d_%d_%d.root",
41 cout <<
"The file:" <<
file << endl;
42 TFile*
f1 = TFile::Open(
file );
43 TNtuple*
n1 = (TNtuple*)
f1->Get(
"timeTuple" );
44 n1->SetBranchAddress(
"inTimePre", &t1 );
45 int nEntries = (Int_t)
n1->GetEntries();
46 cout <<
"nEntries:" << nEntries <<
"\n" << endl;
48 for (
int m = 0; m < nEntries; m++ )
53 double norm = h1->Integral();
54 efficiency0 = norm / 2000000.;
56 if ( norm != 0 ) h1->Scale( 1. / norm );
59 cout <<
"The eff is null!" << endl;
62 TAxis* xaxis = h1->GetXaxis();
63 for (
int m = 0; m < 400; m++ )
65 x[m] = xaxis->GetBinCenter( m );
66 y[m] = h1->GetBinContent( m );
76 TFile*
f =
new TFile(
"effTree.root",
"recreate" );
77 cout <<
"TTree write" << endl;
sprintf(cut, "kal_costheta0_em>-0.93&&kal_costheta0_em<0.93&&kal_pxy0_em>=0.05+%d*0.1&&kal_" "pxy0_em<0.15+%d*0.1&&NGch>=2", j, j)