9 lines
248 B
C++
9 lines
248 B
C++
|
#include <TInterpreter.h>
|
||
|
#include <TROOT.h>
|
||
|
#include <TSystem.h>
|
||
|
|
||
|
void process() {
|
||
|
gInterpreter->AddIncludePath("./include");
|
||
|
gROOT->ProcessLine(".L getADC.cpp");
|
||
|
gROOT->ProcessLine("getADC(\"2016Q3D/root/raw/201609Q3D1002.root\")");
|
||
|
}
|