| 1 | #ifndef MARS_MCalibrationIntensityChargeCam
|
|---|
| 2 | #define MARS_MCalibrationIntensityChargeCam
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MCalibrationIntensityCam
|
|---|
| 5 | #include "MCalibrationIntensityCam.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | #ifndef MARS_MCalibrationChargeCam
|
|---|
| 9 | #include "MCalibrationChargeCam.h"
|
|---|
| 10 | #endif
|
|---|
| 11 |
|
|---|
| 12 | #ifndef MARS_MCalibrationCam
|
|---|
| 13 | #include "MCalibrationCam.h"
|
|---|
| 14 | #endif
|
|---|
| 15 |
|
|---|
| 16 | class TGraphErrors;
|
|---|
| 17 | class TH2F;
|
|---|
| 18 | class TH1F;
|
|---|
| 19 | class MGeomCam;
|
|---|
| 20 | class MCalibrationIntensityChargeCam : public MCalibrationIntensityCam
|
|---|
| 21 | {
|
|---|
| 22 | private:
|
|---|
| 23 |
|
|---|
| 24 | void Add(const UInt_t a, const UInt_t b);
|
|---|
| 25 |
|
|---|
| 26 | public:
|
|---|
| 27 |
|
|---|
| 28 | MCalibrationIntensityChargeCam(const char *name=NULL, const char *title=NULL);
|
|---|
| 29 |
|
|---|
| 30 | Int_t CountNumValidEntries(const UInt_t pixid, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE) const;
|
|---|
| 31 |
|
|---|
| 32 | TGraphErrors *GetRazmikPlot( const UInt_t pixid );
|
|---|
| 33 | TGraphErrors *GetPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE);
|
|---|
| 34 | TGraphErrors *GetPhePerCharge( const UInt_t pixid, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE);
|
|---|
| 35 | TGraphErrors *GetPhePerChargePerArea( const Int_t aidx, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE);
|
|---|
| 36 | TGraphErrors *GetPheVsChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE);
|
|---|
| 37 | TH2F *GetRazmikPlotResults( const Int_t aidx, const MGeomCam &geom );
|
|---|
| 38 |
|
|---|
| 39 | TGraphErrors *GetChargePerAreaVsTime( const Int_t aidx, const MGeomCam &geom );
|
|---|
| 40 | TGraphErrors *GetPhePerAreaVsTime( const Int_t aidx, const MGeomCam &geom );
|
|---|
| 41 | TGraphErrors *GetPhotVsTime( const Option_t *method="FFactor" );
|
|---|
| 42 |
|
|---|
| 43 | TGraphErrors *GetVarPerAreaVsTime( const Int_t aidx, const MGeomCam &geom, const Option_t *varname );
|
|---|
| 44 | TGraphErrors *GetVarVsTime( const Int_t pixid , const Option_t *varname );
|
|---|
| 45 | TH1F *GetVarFluctuations( const Int_t aidx, const MGeomCam &geom, const Option_t *varname);
|
|---|
| 46 |
|
|---|
| 47 | ClassDef(MCalibrationIntensityChargeCam, 1) // Container Intensity Charge Calibration Results Camera
|
|---|
| 48 | };
|
|---|
| 49 |
|
|---|
| 50 | #endif
|
|---|