AliPhysics  cf1a5e2 (cf1a5e2)
AliEmcalJetConstituent.h
Go to the documentation of this file.
1 /************************************************************************************
2  * Copyright (C) 2017, Copyright Holders of the ALICE Collaboration *
3  * All rights reserved. *
4  * *
5  * Redistribution and use in source and binary forms, with or without *
6  * modification, are permitted provided that the following conditions are met: *
7  * * Redistributions of source code must retain the above copyright *
8  * notice, this list of conditions and the following disclaimer. *
9  * * Redistributions in binary form must reproduce the above copyright *
10  * notice, this list of conditions and the following disclaimer in the *
11  * documentation and/or other materials provided with the distribution. *
12  * * Neither the name of the <organization> nor the *
13  * names of its contributors may be used to endorse or promote products *
14  * derived from this software without specific prior written permission. *
15  * *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND *
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED *
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE *
19  * DISCLAIMED. IN NO EVENT SHALL ALICE COLLABORATION BE LIABLE FOR ANY *
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES *
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; *
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND *
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT *
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
26  ************************************************************************************/
27 #ifndef ALIEMCALJETCONSTITUENT_H
28 #define ALIEMCALJETCONSTITUENT_H
29 
30 #include <TObject.h>
31 
36 namespace PWG {
37 
43 namespace JETFW {
44 
57 public:
62 
66  virtual ~AliEmcalJetConstituent();
67 
72  virtual double Px() const = 0;
73 
78  virtual double Py() const = 0;
79 
84  virtual double Pz() const = 0;
85 
90  virtual double Pt() const = 0;
91 
96  virtual double E() const = 0;
97 
102  virtual double Eta() const = 0;
103 
108  virtual double Phi() const = 0;
109 
115 
120  ULong_t GetGlobalIndex() const { return fGlobalIndex; }
121 
126  void SetIsFromEmbeddedEvent(Bool_t isEmbedded) { fIsFromEmbeddedEvent = isEmbedded; }
127 
132  void SetGlobalIndex(ULong_t index) { fGlobalIndex = index; }
133 
134 protected:
137 
139  ClassDef(AliEmcalJetConstituent, 0);
141 };
142 
143 }
144 
145 }
146 
147 #endif /* ALIEMCALJETCONSTITUENT_H */
Bool_t IsFromEmbeddedEvent() const
Checks whether the constituent is from an embedded event.
virtual double Py() const =0
Access to y-component of the momentum vector.
ULong_t GetGlobalIndex() const
Get the index of the constituent in the global index map.
Bool_t fIsFromEmbeddedEvent
Flag whether constituent is from embedded event.
Namespace for objects belonging to the ALICE jet framework.
Interface class for constituent objects (clusters / particles) in an ALICE jet.
virtual double Phi() const =0
Access to azimuthal angle.
void SetGlobalIndex(ULong_t index)
Set the index in the globl.
unsigned long ULong_t
Definition: External.C:38
Namespace for PWG framework classes.
virtual double Pz() const =0
Access to z-component of the momentum vector.
virtual double Eta() const =0
Access to pseudorapidity.
ULong_t fGlobalIndex
Index of the constituent in the global index map.
void SetIsFromEmbeddedEvent(Bool_t isEmbedded)
Specify whether constituent is from embedded event.
virtual double E() const =0
Access to constituent energy.
virtual double Pt() const =0
Access to transverse momentum.
bool Bool_t
Definition: External.C:53
virtual double Px() const =0
Access to x-component of the momentum vector.