ROOT logo
// Example of analysis class for the H1 data using code generated by MakeProxy.
// ===========================================================================
//
// This file uses 4 large data sets from the H1 collaboration at DESY Hamburg.
// One can access these data sets (277 MBytes) from the standard Root web site
// at:       ftp://root.cern.ch/root/h1analysis/
// The Physics plots below generated by this example cannot be produced when
// using smaller data sets.
//
// There are several ways to analyze data stored in a Root Tree
//   -Using TTree::Draw: This is very convenient and efficient for small tasks.
//     A TTree::Draw call produces one histogram at the time. The histogram
//     is automatically generated. The selection expression may be specified
//     in the command line.
//
//   -Using the TTreeViewer: This is a graphical interface to TTree::Draw
//      with the same functionality.
//
//   -Using the code generated by TTree::MakeClass: In this case, the user
//      creates an instance of the analysis class. He has the control over
//      the event loop and he can generate an unlimited number of histograms.
//
//   -Using the code generated by TTree::MakeSelector. Like for the code
//      generated by TTree::MakeClass, the user can do complex analysis.
//      However, he cannot control the event loop. The event loop is controlled
//      by TTree::Process called by the user. This solution is illustrated
//      by the current code. The advantage of this method is that it can be run
//      in a parallel environment using PROOF (the Parallel Root Facility).
//
// A chain of 4 files (originally converted from PAW ntuples) is used
// to illustrate the various ways to loop on Root data sets.
// Each data set contains a Root Tree named "h42"
// The class definition in h1analysis.h has been generated automatically
// by the Root utility TTree::MakeSelector using one of the files with the
// following statement:
//       h42->MakeSelector("h1analysis");
// This produces two files: h1analysis.h and h1analysis.C (skeleton of this file)
// The h1analysis class is derived from the Root class TSelector.
//
// The following members functions are called by the TTree::Process functions.
//    Begin():      called everytime a loop on the tree starts.
//                  a convenient place to create your histograms.
//    SlaveBegin():
//
//    Notify():     This function is called at the first entry of a new Tree
//                  in a chain.
//    Process():    called to analyze each entry.
//
//    SlaveTerminate():
//
//    Terminate():    called at the end of a loop on a TTree.
//                  a convenient place to draw/fit your histograms.
//
//   To use this file, try the following session
//
// Root > gROOT->Time(); //will show RT & CPU time per command
//
//==>   A-  create a TChain with the 4 H1 data files
// The chain can be created by executed the short macro h1chain.C below:
// {
//   TChain chain("h42");
//   chain.Add("$H1/dstarmb.root");  //  21330730 bytes  21920 events
//   chain.Add("$H1/dstarp1a.root"); //  71464503 bytes  73243 events
//   chain.Add("$H1/dstarp1b.root"); //  83827959 bytes  85597 events
//   chain.Add("$H1/dstarp2.root");  // 100675234 bytes 103053 events
//   //where $H1 is a system symbol pointing to the H1 data directory.
// }
//
// Root > .x h1chain.C
//
//==>   B- loop on all events
// Root > chain.Process("h1analysis.C")
//
//==>   C- same as B, but in addition fill the event list with selected entries.
// The event list is saved to a file "elist.root" by the Terminate function.
// To see the list of selected events, you can do elist->Print("all").
// The selection function has selected 7525 events out of the 283813 events
// in the chain of files. (2.65 per cent)
// Root > chain.Process("h1analysis.C","fillList")
//
//==>   D- Process only entries in the event list
// The event list is read from the file in elist.root generated by step C
// Root > chain.Process("h1analysis.C","useList")
//
//==>   E- the above steps have been executed via the interpreter.
//      You can repeat the steps B, C and D using the script compiler
//      by replacing "h1analysis.C" by "h1analysis.C+" or "h1analysis.C++"
//
// in a new session with ,eg:
//
//==>   F- Create the chain as in A, then execute
// Root > chain.Process("h1analysis.C+","useList")
//
// The commands executed with the 4 different methods B,C,D and E
// produce two canvases shown below:
// begin_html <a href="gif/h1analysis_dstar.gif" >the Dstar plot</a> end_html
// begin_html <a href="gif/h1analysis_tau.gif" >the Tau D0 plot</a> end_html
//
//Author; Philippe Canal from original h1analysis.C by Rene Brun

TEventList *elist;
Bool_t useList, fillList;
TH1F *hdmd;
TH2F *h2;

//_____________________________________________________________________
void h1analysisProxy_Begin(TTree * /* tree */ )
{
// function called before starting the event loop
//  -it performs some cleanup
//  -it creates histograms
//  -it sets some initialisation for the event list

   //print the option specified in the Process function.
   TString option = GetOption();
   printf("Starting (begin) h1analysis with process option: %s\n",option.Data());

   //some cleanup in case this function had already been executed
   //delete any previously generated histograms or functions
   gDirectory->Delete("hdmd");
   gDirectory->Delete("h2*");
   delete gROOT->GetFunction("f5");
   delete gROOT->GetFunction("f2");
}

//_____________________________________________________________________
void h1analysisProxy_SlaveBegin(TTree *tree)
{
// function called before starting the event loop
//  -it performs some cleanup
//  -it creates histograms
//  -it sets some initialisation for the event list

   //initialize the Tree branch addresses
   Init(tree);

   //print the option specified in the Process function.
   TString option = GetOption();
   printf("Starting (slave) h1analysis with process option: %s\n",option.Data());

   //some cleanup in case this function had already been executed
   //delete any previously generated histograms or functions
   gDirectory->Delete("hdmd");
   gDirectory->Delete("h2*");
   delete gROOT->GetFunction("f5");
   delete gROOT->GetFunction("f2");

   //create histograms
   hdmd = new TH1F("hdmd","dm_d",40,0.13,0.17);
   h2   = new TH2F("h2","ptD0 vs dm_d",30,0.135,0.165,30,-3,6);

   fOutput->Add(hdmd);
   fOutput->Add(h2);

   //process cases with event list
   fillList = kFALSE;
   useList  = kFALSE;
   tree->SetEventList(0);
   delete gDirectory->GetList()->FindObject("elist");

   // case when one creates/fills the event list
   if (option.Contains("fillList")) {
      fillList = kTRUE;
      elist = new TEventList("elist","selection from Cut",5000);
   } else elist = 0;

   // case when one uses the event list generated in a previous call
   if (option.Contains("useList")) {
      useList  = kTRUE;
      TFile f("elist.root");
      elist = (TEventList*)f.Get("elist");
      if (elist) elist->SetDirectory(0); //otherwise the file destructor will delete elist
      tree->SetEventList(elist);
   }

}

Double_t h1analysisProxy() {
   return 0;
}

//_____________________________________________________________________
Bool_t h1analysisProxy_Process(Long64_t entry)
{
// entry is the entry number in the current Tree
// Selection function to select D* and D0.

   //in case one event list is given in input, the selection has already been done.
   if (!useList) {

      float f1 = md0_d;
      float f2 = md0_d-1.8646;
      bool test = TMath::Abs(md0_d-1.8646) >= 0.04;
      if (gDebug>0) fprintf(stderr,"entry #%lld f1=%f f2=%f test=%d\n",
                            fChain->GetReadEntry(),f1,f2,test);
      
      if (TMath::Abs(md0_d-1.8646) >= 0.04) return kFALSE;
      if (ptds_d <= 2.5) return kFALSE;
      if (TMath::Abs(etads_d) >= 1.5) return kFALSE;
      
      int cik = ik-1;    //original ik used f77 convention starting at 1
      int cipi = ipi-1;  //original ipi used f77 convention starting at 1
      
      f1 = nhitrp[cik];
      f2 = nhitrp[cipi];
      test = nhitrp[cik]*nhitrp[cipi] <= 1;
      if (gDebug>0) fprintf(stderr,"entry #%lld f1=%f f2=%f test=%d\n",
                            fChain->GetReadEntry(),f1,f2,test);
      
      if (nhitrp[cik]*nhitrp[cipi] <= 1) return kFALSE;
      if (rend[cik] -rstart[cik]  <= 22) return kFALSE;
      if (rend[cipi]-rstart[cipi] <= 22) return kFALSE;
      if (nlhk[cik] <= 0.1)    return kFALSE;
      if (nlhpi[cipi] <= 0.1)  return kFALSE;
      // fix because read-only 
      if (nlhpi[ipis-1] <= 0.1) return kFALSE;
      if (njets < 1)          return kFALSE;
      
   }
   // if option fillList, fill the event list
   if (fillList) elist->Enter(fChain->GetChainEntryNumber(entry));

   //fill some histograms
   hdmd->Fill(dm_d);
   h2->Fill(dm_d,rpd0_t/0.029979*1.8646/ptd0_d);

   return kTRUE;
}


//_____________________________________________________________________
void h1analysisProxy_SlaveTerminate()
{
   // nothing to be done
   printf("Terminate (slave) h1analysis\n");
}

//_____________________________________________________________________
void h1analysisProxy_Terminate()
{
   printf("Terminate (final) h1analysis\n");

   // function called at the end of the event loop

   hdmd = dynamic_cast<TH1F*>(fOutput->FindObject("hdmd"));
   h2 = dynamic_cast<TH2F*>(fOutput->FindObject("h2"));

   if (hdmd == 0 || h2 == 0) {
      Error("Terminate", "hdmd = %p , h2 = %p", hdmd, h2);
      return;
   }

   //create the canvas for the h1analysis fit
   gStyle->SetOptFit();
   TCanvas *c1 = new TCanvas("c1","h1analysis analysis",10,10,800,600);
   c1->SetBottomMargin(0.15);
   hdmd->GetXaxis()->SetTitle("m_{K#pi#pi} - m_{K#pi}[GeV/c^{2}]");
   hdmd->GetXaxis()->SetTitleOffset(1.4);

   //fit histogram hdmd with function f5 using the loglikelihood option
   TF1 *f5 = new TF1("f5",fdm5,0.139,0.17,5);
   f5->SetParameters(1000000, .25, 2000, .1454, .001);
   hdmd->Fit("f5","lr");

   //create the canvas for tau d0
   gStyle->SetOptFit(0);
   gStyle->SetOptStat(1100);
   TCanvas *c2 = new TCanvas("c2","tauD0",100,100,800,600);
   c2->SetGrid();
   c2->SetBottomMargin(0.15);

   // Project slices of 2-d histogram h2 along X , then fit each slice
   // with function f2 and make a histogram for each fit parameter
   // Note that the generated histograms are added to the list of objects
   // in the current directory.
   TF1 *f2 = new TF1("f2",fdm2,0.139,0.17,2);
   f2->SetParameters(10000, 10);
   h2->FitSlicesX(f2,0,0,1,"qln");
   TH1D *h2_1 = (TH1D*)gDirectory->Get("h2_1");
   h2_1->GetXaxis()->SetTitle("#tau[ps]");
   h2_1->SetMarkerStyle(21);
   h2_1->Draw();
   c2->Update();
   TLine *line = new TLine(0,0,0,c2->GetUymax());
   line->Draw();

   //save the event list to a Root file if one was produced
   if (fillList) {
      TFile efile("elist.root","recreate");
      elist->Write();
   }
}
 h1analysisProxy.C:1
 h1analysisProxy.C:2
 h1analysisProxy.C:3
 h1analysisProxy.C:4
 h1analysisProxy.C:5
 h1analysisProxy.C:6
 h1analysisProxy.C:7
 h1analysisProxy.C:8
 h1analysisProxy.C:9
 h1analysisProxy.C:10
 h1analysisProxy.C:11
 h1analysisProxy.C:12
 h1analysisProxy.C:13
 h1analysisProxy.C:14
 h1analysisProxy.C:15
 h1analysisProxy.C:16
 h1analysisProxy.C:17
 h1analysisProxy.C:18
 h1analysisProxy.C:19
 h1analysisProxy.C:20
 h1analysisProxy.C:21
 h1analysisProxy.C:22
 h1analysisProxy.C:23
 h1analysisProxy.C:24
 h1analysisProxy.C:25
 h1analysisProxy.C:26
 h1analysisProxy.C:27
 h1analysisProxy.C:28
 h1analysisProxy.C:29
 h1analysisProxy.C:30
 h1analysisProxy.C:31
 h1analysisProxy.C:32
 h1analysisProxy.C:33
 h1analysisProxy.C:34
 h1analysisProxy.C:35
 h1analysisProxy.C:36
 h1analysisProxy.C:37
 h1analysisProxy.C:38
 h1analysisProxy.C:39
 h1analysisProxy.C:40
 h1analysisProxy.C:41
 h1analysisProxy.C:42
 h1analysisProxy.C:43
 h1analysisProxy.C:44
 h1analysisProxy.C:45
 h1analysisProxy.C:46
 h1analysisProxy.C:47
 h1analysisProxy.C:48
 h1analysisProxy.C:49
 h1analysisProxy.C:50
 h1analysisProxy.C:51
 h1analysisProxy.C:52
 h1analysisProxy.C:53
 h1analysisProxy.C:54
 h1analysisProxy.C:55
 h1analysisProxy.C:56
 h1analysisProxy.C:57
 h1analysisProxy.C:58
 h1analysisProxy.C:59
 h1analysisProxy.C:60
 h1analysisProxy.C:61
 h1analysisProxy.C:62
 h1analysisProxy.C:63
 h1analysisProxy.C:64
 h1analysisProxy.C:65
 h1analysisProxy.C:66
 h1analysisProxy.C:67
 h1analysisProxy.C:68
 h1analysisProxy.C:69
 h1analysisProxy.C:70
 h1analysisProxy.C:71
 h1analysisProxy.C:72
 h1analysisProxy.C:73
 h1analysisProxy.C:74
 h1analysisProxy.C:75
 h1analysisProxy.C:76
 h1analysisProxy.C:77
 h1analysisProxy.C:78
 h1analysisProxy.C:79
 h1analysisProxy.C:80
 h1analysisProxy.C:81
 h1analysisProxy.C:82
 h1analysisProxy.C:83
 h1analysisProxy.C:84
 h1analysisProxy.C:85
 h1analysisProxy.C:86
 h1analysisProxy.C:87
 h1analysisProxy.C:88
 h1analysisProxy.C:89
 h1analysisProxy.C:90
 h1analysisProxy.C:91
 h1analysisProxy.C:92
 h1analysisProxy.C:93
 h1analysisProxy.C:94
 h1analysisProxy.C:95
 h1analysisProxy.C:96
 h1analysisProxy.C:97
 h1analysisProxy.C:98
 h1analysisProxy.C:99
 h1analysisProxy.C:100
 h1analysisProxy.C:101
 h1analysisProxy.C:102
 h1analysisProxy.C:103
 h1analysisProxy.C:104
 h1analysisProxy.C:105
 h1analysisProxy.C:106
 h1analysisProxy.C:107
 h1analysisProxy.C:108
 h1analysisProxy.C:109
 h1analysisProxy.C:110
 h1analysisProxy.C:111
 h1analysisProxy.C:112
 h1analysisProxy.C:113
 h1analysisProxy.C:114
 h1analysisProxy.C:115
 h1analysisProxy.C:116
 h1analysisProxy.C:117
 h1analysisProxy.C:118
 h1analysisProxy.C:119
 h1analysisProxy.C:120
 h1analysisProxy.C:121
 h1analysisProxy.C:122
 h1analysisProxy.C:123
 h1analysisProxy.C:124
 h1analysisProxy.C:125
 h1analysisProxy.C:126
 h1analysisProxy.C:127
 h1analysisProxy.C:128
 h1analysisProxy.C:129
 h1analysisProxy.C:130
 h1analysisProxy.C:131
 h1analysisProxy.C:132
 h1analysisProxy.C:133
 h1analysisProxy.C:134
 h1analysisProxy.C:135
 h1analysisProxy.C:136
 h1analysisProxy.C:137
 h1analysisProxy.C:138
 h1analysisProxy.C:139
 h1analysisProxy.C:140
 h1analysisProxy.C:141
 h1analysisProxy.C:142
 h1analysisProxy.C:143
 h1analysisProxy.C:144
 h1analysisProxy.C:145
 h1analysisProxy.C:146
 h1analysisProxy.C:147
 h1analysisProxy.C:148
 h1analysisProxy.C:149
 h1analysisProxy.C:150
 h1analysisProxy.C:151
 h1analysisProxy.C:152
 h1analysisProxy.C:153
 h1analysisProxy.C:154
 h1analysisProxy.C:155
 h1analysisProxy.C:156
 h1analysisProxy.C:157
 h1analysisProxy.C:158
 h1analysisProxy.C:159
 h1analysisProxy.C:160
 h1analysisProxy.C:161
 h1analysisProxy.C:162
 h1analysisProxy.C:163
 h1analysisProxy.C:164
 h1analysisProxy.C:165
 h1analysisProxy.C:166
 h1analysisProxy.C:167
 h1analysisProxy.C:168
 h1analysisProxy.C:169
 h1analysisProxy.C:170
 h1analysisProxy.C:171
 h1analysisProxy.C:172
 h1analysisProxy.C:173
 h1analysisProxy.C:174
 h1analysisProxy.C:175
 h1analysisProxy.C:176
 h1analysisProxy.C:177
 h1analysisProxy.C:178
 h1analysisProxy.C:179
 h1analysisProxy.C:180
 h1analysisProxy.C:181
 h1analysisProxy.C:182
 h1analysisProxy.C:183
 h1analysisProxy.C:184
 h1analysisProxy.C:185
 h1analysisProxy.C:186
 h1analysisProxy.C:187
 h1analysisProxy.C:188
 h1analysisProxy.C:189
 h1analysisProxy.C:190
 h1analysisProxy.C:191
 h1analysisProxy.C:192
 h1analysisProxy.C:193
 h1analysisProxy.C:194
 h1analysisProxy.C:195
 h1analysisProxy.C:196
 h1analysisProxy.C:197
 h1analysisProxy.C:198
 h1analysisProxy.C:199
 h1analysisProxy.C:200
 h1analysisProxy.C:201
 h1analysisProxy.C:202
 h1analysisProxy.C:203
 h1analysisProxy.C:204
 h1analysisProxy.C:205
 h1analysisProxy.C:206
 h1analysisProxy.C:207
 h1analysisProxy.C:208
 h1analysisProxy.C:209
 h1analysisProxy.C:210
 h1analysisProxy.C:211
 h1analysisProxy.C:212
 h1analysisProxy.C:213
 h1analysisProxy.C:214
 h1analysisProxy.C:215
 h1analysisProxy.C:216
 h1analysisProxy.C:217
 h1analysisProxy.C:218
 h1analysisProxy.C:219
 h1analysisProxy.C:220
 h1analysisProxy.C:221
 h1analysisProxy.C:222
 h1analysisProxy.C:223
 h1analysisProxy.C:224
 h1analysisProxy.C:225
 h1analysisProxy.C:226
 h1analysisProxy.C:227
 h1analysisProxy.C:228
 h1analysisProxy.C:229
 h1analysisProxy.C:230
 h1analysisProxy.C:231
 h1analysisProxy.C:232
 h1analysisProxy.C:233
 h1analysisProxy.C:234
 h1analysisProxy.C:235
 h1analysisProxy.C:236
 h1analysisProxy.C:237
 h1analysisProxy.C:238
 h1analysisProxy.C:239
 h1analysisProxy.C:240
 h1analysisProxy.C:241
 h1analysisProxy.C:242
 h1analysisProxy.C:243
 h1analysisProxy.C:244
 h1analysisProxy.C:245
 h1analysisProxy.C:246
 h1analysisProxy.C:247
 h1analysisProxy.C:248
 h1analysisProxy.C:249
 h1analysisProxy.C:250
 h1analysisProxy.C:251
 h1analysisProxy.C:252
 h1analysisProxy.C:253
 h1analysisProxy.C:254
 h1analysisProxy.C:255
 h1analysisProxy.C:256
 h1analysisProxy.C:257
 h1analysisProxy.C:258
 h1analysisProxy.C:259
 h1analysisProxy.C:260
 h1analysisProxy.C:261
 h1analysisProxy.C:262
 h1analysisProxy.C:263
 h1analysisProxy.C:264
 h1analysisProxy.C:265
 h1analysisProxy.C:266
 h1analysisProxy.C:267
 h1analysisProxy.C:268
 h1analysisProxy.C:269
 h1analysisProxy.C:270
 h1analysisProxy.C:271
 h1analysisProxy.C:272
 h1analysisProxy.C:273
 h1analysisProxy.C:274
 h1analysisProxy.C:275
 h1analysisProxy.C:276
 h1analysisProxy.C:277
 h1analysisProxy.C:278
 h1analysisProxy.C:279
 h1analysisProxy.C:280
 h1analysisProxy.C:281
 h1analysisProxy.C:282
 h1analysisProxy.C:283
 h1analysisProxy.C:284
 h1analysisProxy.C:285
 h1analysisProxy.C:286
 h1analysisProxy.C:287
 h1analysisProxy.C:288
 h1analysisProxy.C:289
 h1analysisProxy.C:290
 h1analysisProxy.C:291
 h1analysisProxy.C:292
 h1analysisProxy.C:293