]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MFT/AliMFTClusterQA.C
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / MFT / AliMFTClusterQA.C
CommitLineData
820b4d9e 1//================================================================================================================================
2
3void AliMFTClusterQA(const Char_t *readDir= ".",
4 const Char_t *outDir = ".",
5 Int_t nEventsToAnalyze = -1) {
6
7 AliMFTClusterQA *myAnalysis = new AliMFTClusterQA();
8 myAnalysis -> Init(readDir, outDir, nEventsToAnalyze);
9
10 while (myAnalysis->LoadNextEvent()) continue;
11
12 myAnalysis->Terminate();
13
14}
15
16//================================================================================================================================
17