]> git.uio.no Git - u/mrichter/AliRoot.git/blame - 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
CommitLineData
f9210de7 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
10class AliFemtoEvent;
11class AliFemtoTrack;
12class AliFemtoV0;
13class AliFemtoKink;
14class AliFemtoPair;
15class TH1D;
16class TH2D;
17class TList;
18#include "AliFemtoString.h"
19#include "AliFemtoParticleCollection.h"
20#include "AliFemtoCutMonitor.h"
21
22class AliFemtoCutMonitorTrackTPCncls : public AliFemtoCutMonitor{
23
24public:
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
46private:
47 TH1D *fTrTPCncls; // TPC track TPC clusters distribution
48};
49
50#endif