source: trunk/MagicSoft/Mars/mtemp/mifae/library/MFHVNotNominal.h@ 4226

Last change on this file since 4226 was 3977, checked in by jlopez, 20 years ago
*** empty log message ***
File size: 1.6 KB
Line 
1#ifndef MARS_MFHVNotNominal
2#define MARS_MFHVNotNominal
3
4#ifndef ROOT_TString
5#include <TString.h>
6#endif
7
8#ifndef ROOT_TArrayD
9#include <TArrayD.h>
10#endif
11
12#ifndef MARS_MFilter
13#include "MFilter.h"
14#endif
15
16class MCameraHV;
17class MBadPixelsCam;
18
19class MFHVNotNominal : public MFilter
20{
21private:
22 MCameraHV *fHV; // HV monitored values of all pixels in the camera
23 MBadPixelsCam *fBadPixels; // Bad Pixels storage container
24
25 TString fHVConfFile;
26 TArrayD fHVNominal;
27 Bool_t fResult;
28
29 Float_t fMaxHVDeviation; // Maximum HV deviation from nominal values in %.
30 Float_t fMaxNumPixelsDeviated; // Maximum number of pixels with HV deviated from nominal values.
31
32 UInt_t fCut[2];
33
34 Int_t PreProcess(MParList *pList);
35 Int_t Process();
36 Int_t PostProcess();
37
38 Bool_t HVNotNominalRejection();
39
40 Bool_t IsExpressionTrue() const { return fResult; }
41
42public:
43 MFHVNotNominal(const char *name=NULL, const char *title=NULL);
44
45 void SetHVNominalValues(const TString hvconf) { fHVConfFile = hvconf; }
46 void SetHVNominalValues(const TArrayD hvnominal) { fHVNominal = hvnominal; }
47
48 void SetMaxHVDeviation(const Float_t d) { fMaxHVDeviation = d; }
49 void SetMaxNumPixelsDeviated(const Float_t n) { fMaxNumPixelsDeviated = n; }
50
51 Float_t GetfMaxHVDeviation() const { return fMaxHVDeviation; }
52 Float_t GetfMaxNumPixelsDeviated() const { return fMaxNumPixelsDeviated; }
53
54 ClassDef(MFHVNotNominal, 0) // Filter to filter the events with HV out of nominal values
55};
56
57#endif
58
59
60
Note: See TracBrowser for help on using the repository browser.