]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/testFastJet.C
In trigger classes:
[u/mrichter/AliRoot.git] / JETAN / testFastJet.C
1
2 void testFastJet(const char* file="testdata.dat")
3 {
4       gSystem->Load("libCGAL.so");
5       gSystem->Load("libfastjet.so");
6      
7       gSystem->Load("libANALYSIS.so");
8       gSystem->Load("libSTEERBase.so");
9       gSystem->Load("libAOD.so");
10       gSystem->Load("libESD.so");
11       gSystem->Load("libANALYSISalice.so");
12       gSystem->Load("libJETAN.so");
13       
14       AliFastJetFinder* jetFinder = new AliFastJetFinder();
15       jetFinder->RunTest(file);
16       
17       cout << "bye bye " << endl;
18 }