]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGCF/FEMTOSCOPY/AliFemtoUser/AliFemtoShareQualityTPCEntranceSepPairCut.h
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemtoUser / AliFemtoShareQualityTPCEntranceSepPairCut.h
CommitLineData
76ce4b5b 1/////////////////////////////////////////////////////////////////////////////
2// //
3// AliFemtoShareQualityTPCEntranceSepPairCut - a pair cut which checks //
4// for some pair qualities that attempt to identify slit/doubly //
5// reconstructed tracks and also selects pairs based on their separation //
6// at the entrance to the TPC //
7// //
8/////////////////////////////////////////////////////////////////////////////
9/***************************************************************************
10 *
11 * $Id: AliFemtoShareQualityTPCEntranceSepPairCut.h,v 1.1.2.1 2007/10/19 13:35:33 akisiel Exp $
12 *
13 * Author: Adam Kisiel, Ohio State University, kisiel@mps.ohio-state.edu
14 ***************************************************************************
15 *
16 * Description: part of STAR HBT Framework: AliFemtoMaker package
17 * a cut to remove "shared" and "split" pairs
18 *
19 ***************************************************************************
20 *
21 *
22 **************************************************************************/
23
24
25#ifndef ALIFEMTOSHAREQUALITYTPCENTRANCESEPPAIRCUT_H
26#define ALIFEMTOSHAREQUALITYTPCENTRANCESEPPAIRCUT_H
27
28// do I need these lines ?
29//#ifndef StMaker_H
30//#include "StMaker.h"
31//#endif
32
33#include "AliFemtoPairCut.h"
34#include "AliFemtoShareQualityPairCut.h"
35
36class AliFemtoShareQualityTPCEntranceSepPairCut : public AliFemtoShareQualityPairCut{
37public:
38 AliFemtoShareQualityTPCEntranceSepPairCut();
39 AliFemtoShareQualityTPCEntranceSepPairCut(const AliFemtoShareQualityTPCEntranceSepPairCut& c);
40 virtual ~AliFemtoShareQualityTPCEntranceSepPairCut();
41 AliFemtoShareQualityTPCEntranceSepPairCut& operator=(const AliFemtoShareQualityTPCEntranceSepPairCut& c);
42
43 virtual bool Pass(const AliFemtoPair* pair);
44 virtual AliFemtoString Report();
45 virtual TList *ListSettings();
46 virtual AliFemtoPairCut* Clone();
47 void SetTPCEntranceSepMinimum(double dtpc);
48
49 protected:
50 Double_t fDTPCMin; // Minimum allowed pair nominal separation at the entrance to the TPC
51
52#ifdef __ROOT__
53 ClassDef(AliFemtoShareQualityTPCEntranceSepPairCut, 0)
54#endif
55};
56
57inline AliFemtoPairCut* AliFemtoShareQualityTPCEntranceSepPairCut::Clone() { AliFemtoShareQualityTPCEntranceSepPairCut* c = new AliFemtoShareQualityTPCEntranceSepPairCut(*this); return c;}
58
59#endif