]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGCF/Correlations/JCORRAN/AliJJetAnalysis.h
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / PWGCF / Correlations / JCORRAN / AliJJetAnalysis.h
1 /* Copyright(c) 1998-2014, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice */
3
4 // Short comment describing what this class does needed!
5
6 //===========================================================
7 // Dummy comment, should be replaced by a real one
8 //===========================================================
9
10 #ifndef ALIJJETANALYSIS_H
11 #define ALIJJETANALYSIS_H
12
13 #include <TObjArray.h>
14 #include "AliJJet.h"
15
16
17 class AliJJetAnalysis{
18     public:
19
20
21         AliJJetAnalysis();
22         AliJJetAnalysis(const AliJJetAnalysis& ap);
23         AliJJetAnalysis& operator = (const AliJJetAnalysis& ap);
24         ~AliJJetAnalysis();
25
26
27         void AddJets(TObjArray * jets ){
28             if( !jets ) {
29                 //return;
30             }
31             fJetListOfList.Add( (TObject*)jets );
32             //if( !jets ) return;
33             for( int i=0;i<jets->GetEntriesFast();i++ ){
34                 //((AliJJet*)jets->At(i))->ReSum();
35             }
36         } 
37
38         void Run();
39         void CompareTwoJets(AliJJet *j1, AliJJet *j2, double & dE ,int & dN);
40
41
42
43     private:
44         TObjArray fJetListOfList; // !comment needed
45 };
46
47 #endif
48
49