3 |
|
|
4 |
|
#include "Particle.h" |
5 |
|
|
6 |
+ |
/** |
7 |
+ |
* @short photon class |
8 |
+ |
* @author Thomas Peiffer |
9 |
+ |
*/ |
10 |
+ |
|
11 |
|
class Photon : public Particle{ |
12 |
|
|
13 |
|
public: |
26 |
|
~Photon(){ |
27 |
|
}; |
28 |
|
|
29 |
< |
float vertex_x(){return m_vertex_x;} |
30 |
< |
float vertex_y(){return m_vertex_y;} |
31 |
< |
float vertex_z(){return m_vertex_z;} |
32 |
< |
float supercluster_eta(){return m_supercluster_eta;} |
33 |
< |
float supercluster_phi(){return m_supercluster_phi;} |
34 |
< |
float trackIso(){return m_trackIso;} |
29 |
> |
float vertex_x() const{return m_vertex_x;} |
30 |
> |
float vertex_y() const{return m_vertex_y;} |
31 |
> |
float vertex_z() const{return m_vertex_z;} |
32 |
> |
float supercluster_eta() const{return m_supercluster_eta;} |
33 |
> |
float supercluster_phi() const{return m_supercluster_phi;} |
34 |
> |
float trackIso() const{return m_trackIso;} |
35 |
|
|
36 |
|
void set_vertex_x(float x){m_vertex_x=x;} |
37 |
|
void set_vertex_y(float x){m_vertex_y=x;} |