source: trunk/Mars/msignal/MExtractFACT.h@ 17839

Last change on this file since 17839 was 17830, checked in by tbretz, 11 years ago
New classes.
File size: 559 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 Int_t Process();
13 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print);
14
15public:
16 MExtractFACT(const char *name=NULL, const char *title=NULL);
17
18 virtual Bool_t InitArrays(Int_t) { return kTRUE; }
19
20 // For MExtractPedestal
21 Bool_t ReInit(MParList *pList);
22
23 ClassDef(MExtractFACT, 0) // Time And Charge Extractor Base Class
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.