StFms  0.0.0
FMS software in the STAR framework
StFmsFittedPhoton.cxx
Go to the documentation of this file.
1 // $Id$
2 //
3 // $Log$
15 
16 namespace FMSCluster {
17 StFmsFittedPhoton::StFmsFittedPhoton(const Float_t x, const Float_t y,
18  const Float_t e, const Float_t xerr,
19  const Float_t yerr, const Float_t eerr)
20  : energy(e), errEne(eerr), xPos(x), errXPos(xerr), yPos(y), errYPos(yerr) {
21 }
22 
24  energy = 0;
25  errEne = xPos = errXPos = yPos = errYPos = -1;
26 }
27 } // namespace FMSCluster
StFmsFittedPhoton(Float_t x=-1., Float_t y=-1., Float_t e=0., Float_t xerr=-1., Float_t yerr=-1., Float_t eerr=-1.)
Float_t xPos
Fitted (relative) x-position.
Float_t energy
Fitted energy.
Float_t errEne
Energy fit error.
Float_t errXPos
x-position fit error
Declaration of StFmsFittedPhoton, a photon fitted to an FMS cluster.
Float_t errYPos
y-position fit error
Float_t yPos
Fitted (relative) y-position.