Class Reference for E1039 Core & Analysis Software
draw_real_dst.cc
Go to the documentation of this file.
1 
17 #if ROOT_VERSION_CODE >= ROOT_VERSION(6,00,0)
18 R__LOAD_LIBRARY(libinterface_main)
19 #endif
20 
21 TTree* GetTree(const int run, const int spill=0);
22 void PrintTreeElements(TTree* tree);
23 
25 void draw_real_dst(const int run=318, const int spill=0)
26 {
27  gSystem->Load("libinterface_main.so");
28 
29  TTree* tree = GetTree(run, spill);
30  PrintTreeElements(tree); // Call this function to find all variable names.
31  tree->SetAlias("event", "DST.SQEvent");
32  tree->SetAlias("hit" , "DST.SQHitVector._vector");
33  //tree->SetAlias("trk" , "DST.SRecEvent.fAllTracks");
34 
35  TCanvas* c1 = new TCanvas("c1", "");
36  c1->SetGrid();
37 
39  //tree->Draw("DST.SQHitVector.@_vector.size()", "");
40  //c1->SaveAs("n_hits.png");
41 
43  tree->Draw("hit.get_tdc_time()",
44  "event._trigger == 0x4 && hit.get_detector_id() == 13");
45  c1->SaveAs("tdc_time.png");
46 
48  tree->Draw("hit.get_element_id()",
49  "event._trigger == 0x4 && hit.get_detector_id() == 13");
50  c1->SaveAs("ele_id.png");
51 
53  //tree->Draw("trk.fChisq");
54  //c1->SaveAs("trk_chi2.png");
55 
56  exit(0);
57 }
58 
60 TTree* GetTree(const int run, const int spill)
61 {
62  ostringstream oss;
63  oss << setfill('0') << setw(6) << run;
64  string run6 = oss.str();
65  oss.str("");
66  oss << setw(9) << spill;
67  string spill9 = oss.str();
68 
69  oss.str("");
70  oss << "/data2/e1039/dst/run_" << run6 << "/run_" << run6 << "_spill_" << spill9 << "_spin.root";
71  string fn_in = oss.str();
72  cout << "DST = " << fn_in << endl;
73  TFile* file = new TFile(fn_in.c_str());
74  if (! file->IsOpen()) {
75  cout << " Cannot open the DST file. Abort." << endl;
76  exit(1);
77  }
78  TTree* tree = (TTree*)file->Get("T");
79  if (! tree) {
80  cout << " Cannot get the tree object. Abort." << endl;
81  exit(1);
82  }
83  return tree;
84 }
85 
87 void PrintTreeElements(TTree* tree)
88 {
89  TObjArray* arr = tree->GetListOfLeaves();
90  int n_ent = arr->GetEntries();
91  for (int i_ent = 0; i_ent < n_ent; i_ent++) {
92  TObject* obj = arr->At(i_ent);
93  cout << setw(2) << i_ent << " " << obj->ClassName() << " " << obj->GetName() << "\n";
94  }
95  cout << endl;
96 
97  //TLeaf* leaf = tree->GetLeaf("DST.SQHitVector._vector");
98  //leaf->Print();
99  //TObject* cl = leaf->GetValuePointer();
100  //cout << leaf->GetTypeName() << " " << cl->GetName() << endl;
101  //leaf->PrintValue(10);
102  //exit(0);
103 }
void PrintTreeElements(TTree *tree)
Sub-function to just print out the list of tree variables.
TTree * GetTree(const int run, const int spill=0)
ROOT macro to look into the E1039 DST file in a simple way.
void draw_real_dst(const int run=318, const int spill=0)
Main function.