source: branches/AddingGoogleTestEnvironment/msignal/MExtractFACT.h@ 19851

Last change on this file since 19851 was 17869, checked in by tbretz, 10 years ago
ReInit was missing in the header.
File size: 532 bytes
Line 
1#ifndef MARS_MExtractFACT
2#define MARS_MExtractFACT
3
4#ifndef MARS_MExtractTime
5#include "MExtractTime.h"
6#endif
7
8class MExtractFACT : public MExtractTime
9{
10private:
11 Int_t PreProcess(MParList *pList);
12 Bool_t ReInit(MParList *pList);
13 Int_t Process();
14 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print);
15
16public:
17 MExtractFACT(const char *name=NULL, const char *title=NULL);
18
19 virtual Bool_t InitArrays(Int_t) { return kTRUE; }
20
21 ClassDef(MExtractFACT, 0) // Time And Charge Extractor Base Class
22};
23
24#endif
Note: See TracBrowser for help on using the repository browser.