StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StEmcMicroCluster.cxx
1 //###########################################################
2 // EMC Micro Event
3 // Author: Alexandre A. P. Suaide
4 // initial version 08/2001
5 //
6 // See README for details
7 //###########################################################
8 #include "StEmcMicroCluster.h"
9 
10 ClassImp(StEmcMicroCluster)
11 
13 {
14  mHits = new TObjArray();
15 }
16 StEmcMicroCluster::~StEmcMicroCluster()
17 {
18  delete mHits;
19 }
20 StEmcMicroCluster::StEmcMicroCluster(StEmcMicroCluster* cl)
21 {
22  mEta=cl->getEta();
23  mPhi=cl->getPhi();
24  mSigmaEta=cl->getSigmaEta();
25  mSigmaPhi=cl->getSigmaPhi();
26  mEnergy=cl->getEnergy();
27  for(Int_t i=0;i<cl->getNHits();i++)
28  {
30  addHit(hit);
31  }
32 }
33 
Float_t getSigmaPhi()
Return SigmaPhi of the cluster.
StEmcMicroHit * getHit(Int_t hiId)
Return one hit of the cluster.
Float_t getSigmaEta()
Return SigmaEta of the cluster.
Float_t getPhi()
Return Phi of the cluster.
Float_t getEta()
Return Eta of the cluster.
Int_t getNHits()
Return Number of hits of the cluster.