StFms  0.0.0
FMS software in the STAR framework
StMuFmsCluster.cxx
Go to the documentation of this file.
1 // $Id$
2 //
3 // $Log$
13 
14 #include "StEvent/StFmsCluster.h"
15 
16 StMuFmsCluster::StMuFmsCluster(int detectorId, int category, float energy,
17  float x, float y)
18  : mDetectorId(detectorId), mCategory(category), mEnergy(energy),
19  mX(x), mY(y) { }
20 
22  : mDetectorId(cluster.detectorId()), mCategory(cluster.category()),
23  mX(cluster.x()), mY(cluster.y()) { }
24 
26 
27 void StMuFmsCluster::Clear(Option_t* /* option */) {
28  mHits.Clear();
29  mPhotons.Clear();
30 }
virtual ~StMuFmsCluster()
Declaration of StFmsCluster, a group of adjacent FMS hits.
TRefArray mPhotons
StMuFmsPoints in the cluster.
TRefArray mHits
StMuFmsHits in the current cluster.
StMuFmsCluster(int detectorId=0, int category=-1, float energy=0.f, float x=0.f, float y=0.f)
Declaration of StMuFmsCluster, the MuDST FMS cluster class.
virtual void Clear(Option_t *option="")