]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Update by Marco for transition to JETANDEV
authorjthaeder <jthaeder@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 30 Aug 2013 11:42:51 +0000 (11:42 +0000)
committerjthaeder <jthaeder@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 30 Aug 2013 11:42:51 +0000 (11:42 +0000)
HLT/JET/cone/AliHLTJETConeFinder.cxx
HLT/JET/cone/AliHLTJETConeFinder.h

index 6cd8765f368fbacab7e5f97a71bff720c2e34cbf..a4aec2c7f2b9095b780923957d268a8fb5cc6b93 100644 (file)
@@ -51,6 +51,7 @@ ClassImp(AliHLTJETConeFinder)
 AliHLTJETConeFinder::AliHLTJETConeFinder()
   : 
   AliJetFinder(),
+  fReader(NULL),
   fGrid(NULL),
   fJets(NULL) {
   // see header file for class documentation
index caff629b56994ee7cf76b2b62ba348cde67ad510..b5127a86f0196623ac84b44a29c3787c451ee4b3 100644 (file)
@@ -100,6 +100,9 @@ public:
   
   /** Set ptr to output container */
   void SetOutputJets( AliHLTJets* jets ) { fJets = jets; }
+
+  /** Set ptr to jet reader */
+  void SetJetReader( AliJetReader *reader) { fReader = reader; }
   
   /*
    * ---------------------------------------------------------------------------------
@@ -156,13 +159,14 @@ private:
    * ---------------------------------------------------------------------------------
    */
 
+  AliJetReader                *fReader;         // pointer to reader; used to be in AliJetFinder
   /** Grid for cone finder */
   AliHLTJETConeGrid           *fGrid;           //! transient
 
   /** Container of AliAODJets */
   AliHLTJets                  *fJets;           //! transient
 
-  ClassDef(AliHLTJETConeFinder, 1)
+  ClassDef(AliHLTJETConeFinder, 2)
 
 };
 #endif