]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TRD/AliHLTTRDTrackerComponent.h
Correct initialization (freom rev. 31415)
[u/mrichter/AliRoot.git] / HLT / TRD / AliHLTTRDTrackerComponent.h
index ef84b294edd8e686eb08a13b26beba5d38aad108..fcd89c0dde39df735a0f642551dca58b5c143295 100644 (file)
 
 #include "AliHLTProcessor.h"
 class AliCDBManager;
-class AliTRDclusterizerV1HLT;
 class TFile;
 class TGeoManager;
-class AliTRDtrackerHLT;
-class AliMagFMaps;
+//class AliTRDtrackerHLT;
+class AliTRDtracker;
+class AliMagF;
 
 /**
  * @class AliHLTTRDTrackerComponent
@@ -55,24 +55,28 @@ class AliHLTTRDTrackerComponent : public AliHLTProcessor
 /*                  AliHLTUInt32_t& size, vector<AliHLTComponent_BlockData>& outputBlocks ); */
        int DoEvent( const AliHLTComponentEventData & evtData,
                     AliHLTComponentTriggerData & trigData );
+
+       using AliHLTProcessor::DoEvent;
        
     private:
+       /** copy constructor prohibited */
+       AliHLTTRDTrackerComponent(const AliHLTTRDTrackerComponent&);
+       /** assignment operator prohibited */
+       AliHLTTRDTrackerComponent& operator=(const AliHLTTRDTrackerComponent&);
 
        // The size of the output data produced, as a percentage of the input data's size.
        // Can be greater than 100 (%)
        unsigned fOutputPercentage; // Output volume in percentage of the input
 
        string fStrorageDBpath; // Default path for OCDB
-       AliTRDclusterizerV1HLT *fClusterizer; //! Offline derived HLT clusterizer
        AliCDBManager *fCDB; //! Pointer to OCDB
 
-       AliMagFMaps* fField; //! magn. field settings
-
        string fGeometryFileName; // Path to geometry file 
        TFile *fGeometryFile; //! // Pointer to the geom root file
        TGeoManager *fGeoManager; //! Pointer to geometry manager 
 
-       AliTRDtrackerHLT *fTracker;//! Offline-like/HLT tracker
+       //AliTRDtrackerHLT *fTracker;//! Offline-like/HLT tracker
+       AliTRDtracker *fTracker;//! Offline-pure/HLT tracker
 
        ClassDef(AliHLTTRDTrackerComponent, 0)