]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
- fixing compilation errors
authorodjuvsla <odjuvsla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 4 Nov 2009 02:03:09 +0000 (02:03 +0000)
committerodjuvsla <odjuvsla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 4 Nov 2009 02:03:09 +0000 (02:03 +0000)
- file included two times in build system

HLT/PHOS/AliHLTPHOSHistogramProducerComponent.cxx
HLT/PHOS/AliHLTPHOSHistogramProducerComponent.h

index c47a1667eacb1547b8beedb3bf011647a2bd1934..1e078691488f8254a8018ffafa969b55fb14d930 100644 (file)
 #include "AliHLTPHOSPhysicsHistogramProducer.h"
 #include "AliHLTPHOSCaloClusterContainerStruct.h"
 #include "TClonesArray.h"
+#include "AliHLTPHOSHistoProdCellEnergy.h"
+#include "AliHLTPHOSHistoProdClusterEnergy.h"
+#include "AliHLTPHOSHistoProdInvMass.h"
+#include "AliHLTPHOSHistoProdMatchedTracks.h"
+
 /** 
  * @file   AliHLTPHOSHistogramProducerComponent.cxx
  * @author Oystein Djuvsland
index 040fa5b0951d9ff0954b17eda1e5f00118ec7574..4cdaafd1cafbc611a256fb3a3022c6e329f596be 100644 (file)
 #include "AliHLTPHOSProcessor.h"
 
 class AliHLTPHOSPhysicsHistogramProducer;
+
+class AliHLTPHOSHistoProdCellEnergy;
+
+class AliHLTPHOSHistoProdClusterEnergy;
+
+class AliHLTPHOSHistoProdInvMass;
+
+class AliHLTPHOSHistoProdMatchedTracks;
+
 /**
  * @class AliHLTPHOSHistogramProducerComponent
  *
@@ -107,6 +116,20 @@ protected:
 
   AliHLTPHOSPhysicsHistogramProducer* fPhysicsHistogramProducerPtr;
   UInt_t fPushModulo;
+  
+  
+  Bool_t fCellEnergy; // make the cell energy histograms?
+  Bool_t fClusterEnergy; // make the cluster energy histograms?
+  Bool_t fInvariantMass; // make the invariant mass histograms?
+  Bool_t fMatchedTracks; // make the matched tracks histograms?
+  
+  AliHLTPHOSHistoProdCellEnergy *fCellEnergyHistProducer; // cell energy histogram producer
+
+  AliHLTPHOSHistoProdClusterEnergy *fClusterEnergyHistProducer; // cluster energy histogram producer
+
+  AliHLTPHOSHistoProdInvMass *fInvariantMassHistProducer; // invariant mass histogram producer
+
+  AliHLTPHOSHistoProdMatchedTracks *fMatchedTracksHistProducer; // matched tracks histogram producer
 
 };