StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EEmc2ParticleCandidate.h
1 /*
2  * Created by S. Gliske, May 2012
3  *
4  * Description: Container used in the EEmcAnalysisTree. Represents a
5  * candidate parent particle, which decays (decayed) into two
6  * candidate particles.
7  *
8  * Note: this does not explicitly depend on the STAR framework, and so
9  * the trees can be read outside of the STAR framework. Note: data
10  * members are all public, to allow a lighter weight implementation. from
11  * the TTree.
12  *
13  */
14 
15 #ifndef EEmc2ParticleCandidate_H__
16 #define EEmc2ParticleCandidate_H__
17 
18 #include <Rtypes.h>
19 #include "StRoot/StEEmcPool/./EEmcTreeContainers/EEmcParticleCandidate.h"
20 
22 
23  public:
24  // constructor
27 
28  Int_t hitIdx2;
29  Float_t Z, D;
30 
31  private:
32  ClassDef( EEmc2ParticleCandidate_t, 2);
33 };
34 
35 inline EEmc2ParticleCandidate_t::EEmc2ParticleCandidate_t() : EEmcParticleCandidate_t(), hitIdx2(hitIdx1) { /* */ };
36 
37 #endif
38 
39 /*
40  * $Id: EEmc2ParticleCandidate.h,v 1.1 2012/11/26 19:04:30 sgliske Exp $
41  * $Log: EEmc2ParticleCandidate.h,v $
42  * Revision 1.1 2012/11/26 19:04:30 sgliske
43  * moved from offline/users/sgliske/StRoot/StEEmcPool/EEmcTreeContainers to StRoot/StEEmcPool/EEmcTreeContainers
44  *
45  *
46  */