]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/testFastJet.C
Do not allocate fixed size arrays via new
[u/mrichter/AliRoot.git] / JETAN / testFastJet.C
CommitLineData
8f4b89b8 1
2void testFastJet(const char* file="testdata.dat")
aeeeb056 3
8f4b89b8 4{
aeeeb056 5 gSystem->Load("libTree.so");
6 gSystem->Load("libEG.so");
7 gSystem->Load("libVMC.so");
8 gSystem->Load("libPhysics.so");
9
eadf8168 10 gSystem->Load("libCGAL.dylib");
aeeeb056 11
8f4b89b8 12 gSystem->Load("libfastjet.so");
aeeeb056 13 gSystem->Load("libSISConePlugin.so");
14
8f4b89b8 15
16 gSystem->Load("libANALYSIS.so");
17 gSystem->Load("libSTEERBase.so");
18 gSystem->Load("libAOD.so");
19 gSystem->Load("libESD.so");
20 gSystem->Load("libANALYSISalice.so");
8f4b89b8 21
596b71f3 22 gSystem->Load("libJETAN.so");
23 gSystem->Load("libFASTJETAN.so");
24
8f4b89b8 25 AliFastJetFinder* jetFinder = new AliFastJetFinder();
26 jetFinder->RunTest(file);
27
28 cout << "bye bye " << endl;
aeeeb056 29}