]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/RESONANCES/AliRsnCutPrimaryVertex.h
Added facilities to include 1-track histograms, for monitoring and checks
[u/mrichter/AliRoot.git] / PWG2 / RESONANCES / AliRsnCutPrimaryVertex.h
1 //
2 // Class AliRsnCutPrimaryVertex
3 //
4 // This cut implementation checks the quality of event primary vertex.
5 // It currently works only with ESD events (not AOD).
6 //
7 // authors: Martin Vala (martin.vala@cern.ch)
8 //          Alberto Pulvirenti (alberto.pulvirenti@ct.infn.it)
9 //
10
11 #ifndef ALIRSNCUTPRIMARYVERTEX_H
12 #define ALIRSNCUTPRIMARYVERTEX_H
13
14 #include "AliRsnCut.h"
15 #include "AliPID.h"
16
17 #include "Riostream.h"
18 #include "TMath.h"
19
20 #include "AliLog.h"
21 #include "AliESDEvent.h"
22 #include "AliESDVertex.h"
23
24 #include "AliRsnEvent.h"
25
26 class AliRsnEvent;
27 class AliRsnDaughter;
28 class AliRsnPairParticle;
29 class AliRsnCutPrimaryVertex : public AliRsnCut {
30 public:
31
32    AliRsnCutPrimaryVertex(const char *name = "cutPrimVert", Double_t maxVz = 10.0, Int_t minContributors = 1, Bool_t acceptTPC = kFALSE);
33    virtual ~AliRsnCutPrimaryVertex() {;};
34
35    void           SetCheckPileUp(Bool_t doit = kTRUE) {fCheckPileUp = doit;}
36    virtual Bool_t IsSelected(TObject *object);
37    virtual void   Print(const Option_t *option = "") const;
38
39 protected:
40
41    Bool_t fAcceptTPC;   // if kTRUE, the TPC primary vertexes are accepted
42    Bool_t fCheckPileUp; // check and reject pileupped events (pp)
43
44    ClassDef(AliRsnCutPrimaryVertex, 1)
45 };
46
47 #endif