//-*- Mode: C++ -*- // $Id: AliHLTTPCCAGlobalPerformance.h,v 1.1.1.1 2010/07/26 20:55:38 ikulakov Exp $ // ************************************************************************ // 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 * // * //************************************************************************* #ifndef ALIHLTTPCCAGLOBALPERFORMANCE_H #define ALIHLTTPCCAGLOBALPERFORMANCE_H #include "AliHLTTPCCATrackPerformanceBase.h" #include "AliHLTTPCCADef.h" #include "AliHLTArray.h" #include "AliHLTTPCCAMCTrack.h" #include "AliHLTTPCCAMCPoint.h" #include #include #include class TObject; class TParticle; class AliHLTTPCCAMCPoint; class AliHLTTPCCAGBTracker; class TDirectory; class TH1D; class TH2D; class TProfile; class TFile; class AliHLTTPCCATracker; #define IsOutTrack1 /** * @class AliHLTTPCCAGlobalPerformance */ class AliHLTTPCCAGlobalPerformance: public AliHLTTPCCATrackPerformanceBase { public: AliHLTTPCCAGlobalPerformance(){ }; virtual ~AliHLTTPCCAGlobalPerformance(){}; virtual void SetNewEvent(const AliHLTTPCCAGBTracker * const Tracker, AliHLTResizableArray *hitLabels, AliHLTResizableArray *mcTracks, AliHLTResizableArray *localMCPoints); /// 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(); virtual void Draw(); /// Histograms // virtual void CreateHistos(string histoDir); virtual void FillHistos(); }; #endif