//-*- Mode: C++ -*- // ************************************************************************ // This file is property of and copyright by the ALICE HLT Project * // ALICE Experiment at CERN, All rights reserved. * // See cxx source for full Copyright notice * // * //************************************************************************* #ifdef DO_TPCCATRACKER_EFF_PERFORMANCE #ifndef ALIHLTTPCTOPOPERFORMANCE_H #define ALIHLTTPCTOPOPERFORMANCE_H #include "AliHLTTPCParticlePerformanceBase.h" #include "AliHLTTPCCADef.h" #include "AliHLTArray.h" #include "AliHLTTPCCAMCTrack.h" #include "AliHLTTPCCAMCPoint.h" #include "AliHLTTPCCAMCVertex.h" #include #include #include class TObject; class TParticle; class AliHLTTPCCAMCPoint; class AliHLTTPCCAGBTracker; class AliHLTTPCTopoReconstructor; class TDirectory; class TH1D; class TH2D; class TProfile; class TFile; class AliHLTTPCCATracker; /** * @class AliHLTTPCTopoPerformance. Don't use w\o GlobalPerformance */ class AliHLTTPCTopoPerformance: public AliHLTTPCParticlePerformanceBase { public: AliHLTTPCTopoPerformance(); virtual ~AliHLTTPCTopoPerformance(){}; virtual void SetNewEvent( const AliHLTTPCCAGBTracker * const Tracker, AliHLTResizableArray *hitLabels, AliHLTResizableArray *mcTracks, AliHLTResizableArray *localMCPoints); void SetNewEvent2( const AliHLTTPCTopoReconstructor * const TopoReconstructor ); // use together with SetNewEvent !!! /// Efficiency // Check if MC track is reconstructable. Calculate set of MC track. Etc. virtual void CheckMCTracks(); // fill mcData. // Find reco-MCTracks correspondence virtual void MatchTracks(); // fill recoData. // Calculate efficiencies virtual void EfficiencyPerformance(){}; // current don't use eff virtual void PrintEfficiencyStatistic(){}; // current don't use eff virtual void PrintEfficiency() {}; /// Histograms // virtual void CreateHistos(string histoDir); virtual void FillHistos(); private: const AliHLTTPCTopoReconstructor *fTopoReconstructor; vector fPrimVertices; // primary vertex positions (currently only one vertex is implemented) }; #endif #endif //DO_TPCCATRACKER_EFF_PERFORMANCE