FRIB_e21062/script.C

24 lines
367 B
C++
Raw Normal View History

2022-06-06 19:57:17 -04:00
#include "armory/evtReader.h"
evtReader * evt = new evtReader("run-0238-00.evt", true);
void script() {
/*
2022-05-24 18:21:12 -04:00
TChain * chain = new TChain("tree");
chain->Add("root_data/run-0238-[0-4][0-9].root");
chain->GetListOfFiles()->Print();
chain->Process("peachCake.C+");
2022-06-06 19:57:17 -04:00
*/
//gROOT->ProcessLine("armory/nsclEvtReader.h");
evt->ReadBlock(2);
2022-05-24 18:21:12 -04:00
}