StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EEsmdHitDst.h
1 // \class EEtwHitDst
2 // \author Piotr A. Zolnierczuk, Aug 2002
3 #ifndef EEsmdHitDst_h
4 #define EEsmdHitDst_h
5 /*********************************************************************
6  * $Id: EEsmdHitDst.h,v 1.1 2003/01/28 23:16:07 balewski Exp $
7  *********************************************************************
8  * Descripion:
9  * STAR Endcap Electromagnetic Calorimeter Raw Hits
10  *********************************************************************
11  * $Log: EEsmdHitDst.h,v $
12  * Revision 1.1 2003/01/28 23:16:07 balewski
13  * start
14  *
15  * Revision 1.2 2002/11/11 21:22:48 balewski
16  * EEMC added to StEvent
17  *
18  * Revision 1.1 2002/10/01 14:41:54 balewski
19  * SMD added
20  *
21  * Revision 1.3 2002/09/25 16:47:56 balewski
22  * cleanup , cut in geant time for twoer-like detectors
23  *
24  * Revision 1.2 2002/09/20 21:58:13 balewski
25  * sum of MC hits over activ detectors
26  * produce total tower energy with weight 1 1 1 1
27  *
28  * Revision 1.1.1.1 2002/09/19 18:58:54 zolnie
29  * Imported sources
30  *
31  * Revision 1.1.1.1 2002/08/29 19:32:01 zolnie
32  * imported sources
33  *
34  * Revision 1.2 2002/08/28 01:44:03 zolnie
35  * version alpha - 2
36  *
37  * Revision 1.1 2002/08/26 19:46:19 zolnie
38  * Initial revision
39  *
40  *********************************************************************/
41 #include "TObject.h"
42 
43 
44 class EEsmdHitDst : public TObject {
45  private:
46  Float_t mEnergy; // GeV
47  int mStrip; // 1-~288
48 public:
49  EEsmdHitDst();
50 
51  virtual ~EEsmdHitDst();
52 
53  Float_t energy() const { return mEnergy; }
54  int strip() {return mStrip;}
55  void set( int, Float_t e);
56  void get( int &strip, Float_t &e);
57  void print();
58 
59  ClassDef(EEsmdHitDst,1)
60 };
61 #endif
62 
63 
64