StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StIstHitMaker.h
1 /* $Id: StIstHitMaker.h,v 1.15 2015/07/27 18:50:49 huangbc Exp $ */
2 
3 #ifndef StIstHitMaker_hh
4 #define StIstHitMaker_hh
5 
6 #include "StMaker.h"
7 
8 class THashList;
9 
10 
17 class StIstHitMaker : public StMaker
18 {
19 public:
20 
21  StIstHitMaker( const char *name = "ist_hit" );
22  Int_t InitRun(Int_t runnumber);
23  Int_t Make();
24 
25  virtual const char *GetCVS() const
26  {static const char cvs[]="Tag $Name: $ $Id: StIstHitMaker.h,v 1.15 2015/07/27 18:50:49 huangbc Exp $ built " __DATE__ " " __TIME__ ; return cvs;}
27 
28 protected:
29 
30  THashList *mSensorTransforms;
31 
32  ClassDef(StIstHitMaker, 0);
33 };
34 
35 #endif
36 
37 
38 /***************************************************************************
39 *
40 * $Log: StIstHitMaker.h,v $
41 * Revision 1.15 2015/07/27 18:50:49 huangbc
42 * Add space before and after "__DATE__" and "__TIME__" for compling under gcc4.8.2
43 *
44 * Revision 1.14 2014/10/13 22:33:04 smirnovd
45 * Minor adjustments to the code and comments
46 *
47 * Revision 1.13 2014/10/13 22:32:57 smirnovd
48 * StIstHitMaker: Renamed data member to more meaningful name conforming with STAR style
49 *
50 * Revision 1.12 2014/10/13 22:28:24 smirnovd
51 * StIstHitMaker: Use local pointer to StIstDb. No need to have a data member
52 *
53 * Revision 1.11 2014/10/13 22:28:18 smirnovd
54 * Do not use automatic ROOT I/O as this is a StMaker. Makers are not persistent
55 *
56 * Revision 1.10 2014/10/13 22:28:11 smirnovd
57 * Removed pointless methods. ::Init() and ::Finish() do not do much. Data members initialized in constructor
58 *
59 * Revision 1.9 2014/10/13 22:28:03 smirnovd
60 * StIstHitMaker: Corrected style with astyle -s3 -p -H -A3 -k3 -O -o -y -Y -f
61 *
62 * Revision 1.8 2014/10/13 22:21:56 smirnovd
63 * Moved CVS log to the end of file and updated doxygen-style comments
64 *
65 * Revision 1.7 2014/08/12 23:08:09 ypwang
66 * remove the cluster number cut per ladder, due to chip occupancy cut was added in raw hit maker which can do the bad column rejection
67 *
68 * Revision 1.6 2014/07/29 20:13:31 ypwang
69 * update the IST DB obtain method
70 *
71 * Revision 1.5 2014/06/27 21:31:40 ypwang
72 * remove data member istHitCollection and related Clear() function
73 *
74 * Revision 1.4 2014/02/08 03:34:16 ypwang
75 * updating scripts
76 *
77 *
78 ****************************************************************************
79 * StIstHitMaker.h,v 1.0
80 * Revision 1.0 2013/11/04 16:05:30 Yaping
81 * Initial version
82 ****************************************************************************/
THashList * mSensorTransforms
A list of TGeo transformations for each IST sensor.
Definition: StIstHitMaker.h:30