StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StRHICfRawHitMaker.h
1 /***************************************************************************
2  * Author: Akio Ogawa, Minho Kim, Seunghwan Lee
3  ***************************************************************************
4  *
5  * Description: This is the Hit maker for the RHICf data.
6  *
7  ***************************************************************************
8  * $Id: StRHICfRawHitMaker.cxx,v 1.4 2017/01/30 18:10:16 akio Exp $
9  * $Log: StRHICfRawHitMaker.cxx,v $
10  ***************************************************************************/
11 
12 #ifndef StRHICfRawHitMaker_H
13 #define StRHICfRawHitMaker_H
14 
15 #include "StChain/StRTSBaseMaker.h"
16 #include "StRHICfUtil/StRHICfFunction.h"
17 
18 class StRHICfDbMaker;
19 class StRHICfCollection;
20 class StRHICfRawHit;
21 
23 {
24  public:
25  StRHICfRawHitMaker(const Char_t* name="RHICfRawHit");
27 
28  Int_t InitRun(Int_t runNumber);
29  Int_t Make();
30  Int_t Finish();
31 
32  private:
33  StRHICfDbMaker* mRHICfDbMaker = 0;
34  StRHICfCollection* mRHICfCollection = 0;
35  StRHICfRawHit* mRHICfRawHitColl = 0;
36 
37  ClassDef(StRHICfRawHitMaker,0);
38 };
39 
40 #endif
Class StRTSBaseMaker - is an abstract StMaker to define the interface to access the DAQ data from the...