]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGJE/EMCALJetTasks/Tracks/AliEMCalTriggerKineCuts.cxx
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / Tracks / AliEMCalTriggerKineCuts.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2014, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15 /*
16  * Basic kinematic cuts for single track selection
17  *
18  *   Author: Markus Fasel
19  */
20 #include <TMath.h>
21 #include "AliEMCalTriggerKineCuts.h"
22 #include "AliVParticle.h"
23
24 namespace EMCalTriggerPtAnalysis {
25
26 //______________________________________________________________________________
27 AliEMCalTriggerKineCuts::AliEMCalTriggerKineCuts():
28   TObject(),
29   fPtCut(0.1, 1000.),
30   fEtaCut(-0.8, 0.8),
31   fPhiCut()
32 {
33 }
34
35 //______________________________________________________________________________
36 bool AliEMCalTriggerKineCuts::IsSelected(const AliVParticle* const track) const {
37   /*
38    * Kinematic track selection
39    */
40   if(!fPtCut.IsInRange(TMath::Abs(track->Pt()))) return false;
41   if(!fEtaCut.IsInRange(track->Eta())) return false;
42   if(!fPhiCut.IsInRange(track->Phi())) return false;
43   return true;
44 }
45
46 } /* namespace EMCalTriggerPtAnalysis */