17 #if ROOT_VERSION_CODE >= ROOT_VERSION(6,00,0)
18 R__LOAD_LIBRARY(libinterface_main)
21 TTree*
GetTree(
const int run,
const int spill=0);
27 gSystem->Load(
"libinterface_main.so");
29 TTree* tree =
GetTree(run, spill);
31 tree->SetAlias(
"event",
"DST.SQEvent");
32 tree->SetAlias(
"hit" ,
"DST.SQHitVector._vector");
35 TCanvas* c1 =
new TCanvas(
"c1",
"");
43 tree->Draw(
"hit.get_tdc_time()",
44 "event._trigger == 0x4 && hit.get_detector_id() == 13");
45 c1->SaveAs(
"tdc_time.png");
48 tree->Draw(
"hit.get_element_id()",
49 "event._trigger == 0x4 && hit.get_detector_id() == 13");
50 c1->SaveAs(
"ele_id.png");
60 TTree*
GetTree(
const int run,
const int spill)
63 oss << setfill(
'0') << setw(6) << run;
64 string run6 = oss.str();
66 oss << setw(9) << spill;
67 string spill9 = 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;
78 TTree* tree = (TTree*)file->Get(
"T");
80 cout <<
" Cannot get the tree object. Abort." << endl;
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";
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.