]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FEMTOSCOPY/AliFemtoUser/AliFemtoCutMonitorTrackTPCncls.h
Lines getting the matched track moved to a method in AliCalorimeterUtils. Lines copie...
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemtoUser / AliFemtoCutMonitorTrackTPCncls.h
1 ////////////////////////////////////////////////////////////////////////////////
2 ///                                                                          ///
3 /// AliFemtoCutMonitorTrackTPCncls - the cut monitor for tracks to study     ///
4 /// the number of TPC Clusters distribution.                                 ///
5 ///                                                                          ///
6 ////////////////////////////////////////////////////////////////////////////////
7 #ifndef AliFemtoCutMonitorTrackTPCncls_hh
8 #define AliFemtoCutMonitorTrackTPCncls_hh
9
10 class AliFemtoEvent;
11 class AliFemtoTrack;
12 class AliFemtoV0;
13 class AliFemtoKink;
14 class AliFemtoPair; 
15 class TH1D;
16 class TH2D;
17 class TList;
18 #include "AliFemtoString.h"
19 #include "AliFemtoParticleCollection.h"
20 #include "AliFemtoCutMonitor.h"
21
22 class AliFemtoCutMonitorTrackTPCncls : public AliFemtoCutMonitor{
23   
24 public:
25   AliFemtoCutMonitorTrackTPCncls();
26   AliFemtoCutMonitorTrackTPCncls(const char *aName);
27   AliFemtoCutMonitorTrackTPCncls(const AliFemtoCutMonitorTrackTPCncls &aCut);
28   virtual ~AliFemtoCutMonitorTrackTPCncls();
29
30   AliFemtoCutMonitorTrackTPCncls& operator=(const AliFemtoCutMonitorTrackTPCncls& aCut);
31
32   virtual AliFemtoString Report();
33   virtual void Fill(const AliFemtoEvent* aEvent) {AliFemtoCutMonitor::Fill(aEvent);}
34   virtual void Fill(const AliFemtoTrack* aTrack); 
35   virtual void Fill(const AliFemtoV0* aV0) {AliFemtoCutMonitor::Fill(aV0);}
36   virtual void Fill(const AliFemtoKink* aKink) {AliFemtoCutMonitor::Fill(aKink);}
37   virtual void Fill(const AliFemtoPair* aPair) {AliFemtoCutMonitor::Fill(aPair);}
38   virtual void Fill(const AliFemtoParticleCollection* aCollection) {AliFemtoCutMonitor::Fill(aCollection);}
39   virtual void Fill(const AliFemtoEvent* aEvent,const AliFemtoParticleCollection* aCollection)
40   {AliFemtoCutMonitor::Fill(aEvent, aCollection);}
41
42   void Write();
43
44   virtual TList *GetOutputList();
45
46 private:
47   TH1D *fTrTPCncls;    // TPC track TPC clusters distribution
48 };
49
50 #endif