StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StFinderAlg.h
1 
10 // ROOT stuff
11 #include <Rtypes.h>
12 
13 
14 #ifndef _FINDER_ALG_H_
15 #define _FINDER_ALG_H_
16 
18 
19  public:
20  StFinderAlg_t() : mIsReady(0) { /* */ };
21  virtual ~StFinderAlg_t() { /* */ };
22 
24  Bool_t isReady() const { return mIsReady; };
25 
27  virtual void clear() = 0;
28 
29  static void setEventNum( Int_t eventNum ){ mEventNum=eventNum; };
30  static Int_t getEventNum(){ return mEventNum; };
31 
32  protected:
33  Bool_t mIsReady;
34 
35  private:
36  static Int_t mEventNum;
37 
38  ClassDef( StFinderAlg_t, 1 );
39 };
40 
41 #endif
42 
43 /*
44  * $Id: StFinderAlg.h,v 1.1 2012/11/26 19:05:56 sgliske Exp $
45  * $Log: StFinderAlg.h,v $
46  * Revision 1.1 2012/11/26 19:05:56 sgliske
47  * moved from offline/users/sgliske/StRoot/StEEmcPool/StEEmcHitMaker to StRoot/StEEmcPool/StEEmcHitMaker
48  *
49  *
50  */
virtual void clear()=0
clear things before doing the finding for the next event
Bool_t isReady() const
Check if status is ready for hit finding.
Definition: StFinderAlg.h:24