1 | /* ======================================================================== *\
|
---|
2 | !
|
---|
3 | ! *
|
---|
4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
---|
6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
---|
8 | ! *
|
---|
9 | ! * Permission to use, copy, modify and distribute this software and its
|
---|
10 | ! * documentation for any purpose is hereby granted without fee,
|
---|
11 | ! * provided that the above copyright notice appear in all copies and
|
---|
12 | ! * that both that copyright notice and this permission notice appear
|
---|
13 | ! * in supporting documentation. It is provided "as is" without express
|
---|
14 | ! * or implied warranty.
|
---|
15 | ! *
|
---|
16 | !
|
---|
17 | !
|
---|
18 | ! Author(s): Markus Gaug 02/2004 <mailto:markus@ifae.es>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2004
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 | //////////////////////////////////////////////////////////////////////////////
|
---|
26 | //
|
---|
27 | // MHCalibrationChargeHiGainPix
|
---|
28 | //
|
---|
29 | // Store the histogrammed Hi Gain summed FADC slices and the arrival times
|
---|
30 | //
|
---|
31 | //////////////////////////////////////////////////////////////////////////////
|
---|
32 | #include "MHCalibrationChargeHiGainPix.h"
|
---|
33 |
|
---|
34 | #include <TH1.h>
|
---|
35 | #include <TPad.h>
|
---|
36 | #include <TVirtualPad.h>
|
---|
37 | #include <TCanvas.h>
|
---|
38 |
|
---|
39 | #include "MLog.h"
|
---|
40 | #include "MLogManip.h"
|
---|
41 |
|
---|
42 | #include "MParList.h"
|
---|
43 |
|
---|
44 | #include "MExtractedSignalCam.h"
|
---|
45 |
|
---|
46 |
|
---|
47 | ClassImp(MHCalibrationChargeHiGainPix);
|
---|
48 |
|
---|
49 | using namespace std;
|
---|
50 |
|
---|
51 | const Int_t MHCalibrationChargeHiGainPix::fgChargeNbins = 2000;
|
---|
52 | const Axis_t MHCalibrationChargeHiGainPix::fgChargeFirst = -0.5;
|
---|
53 | const Axis_t MHCalibrationChargeHiGainPix::fgChargeLast = 1999.5;
|
---|
54 | const Int_t MHCalibrationChargeHiGainPix::fgAbsTimeNbins = 20;
|
---|
55 | const Axis_t MHCalibrationChargeHiGainPix::fgAbsTimeFirst = -0.5;
|
---|
56 | const Axis_t MHCalibrationChargeHiGainPix::fgAbsTimeLast = 19.5;
|
---|
57 | // --------------------------------------------------------------------------
|
---|
58 | //
|
---|
59 | // Default Constructor.
|
---|
60 | //
|
---|
61 | // Sets:
|
---|
62 | // - the default number for fChargeNbins (fgChargeNbins)
|
---|
63 | // - the default number for fChargeFirst (fgChargeFirst)
|
---|
64 | // - the default number for fChargeLast (fgChargeLast)
|
---|
65 | // - the default number for fAbsTimeNbins (fgAbstTimeNbins)
|
---|
66 | // - the default number for fAbsTimeFirst (fgAbsTimeFirst)
|
---|
67 | // - the default number for fAbsTimeLast (fgAbsTimeLast)
|
---|
68 | //
|
---|
69 | // - the default name of the fHGausHist ("HCalibrationChargeHiGainPix")
|
---|
70 | // - the default title of the fHGausHist ("Distribution of Summed Hi Gain FADC slices Pixel ")
|
---|
71 | //
|
---|
72 | // - the default name of the fHAbsTime ("HAbsTimeHiGainPix")
|
---|
73 | // - the default title of the fHAbsTime ("Distribution of Absolute Arrival Times Hi Gain Pixel ")
|
---|
74 | //
|
---|
75 | MHCalibrationChargeHiGainPix::MHCalibrationChargeHiGainPix(const char *name, const char *title)
|
---|
76 | {
|
---|
77 |
|
---|
78 | fName = name ? name : "MHCalibrationChargeHiGainPix";
|
---|
79 | fTitle = title ? title : "Fill the FADC sums of the HiGainPix events and perform the fits Pixel ";
|
---|
80 |
|
---|
81 | SetChargeNbins();
|
---|
82 | SetChargeFirst();
|
---|
83 | SetChargeLast();
|
---|
84 |
|
---|
85 | SetAbsTimeNbins();
|
---|
86 | SetAbsTimeFirst();
|
---|
87 | SetAbsTimeLast();
|
---|
88 |
|
---|
89 | fHGausHist.SetName("HCalibrationChargeHiGainPix");
|
---|
90 | fHGausHist.SetTitle("Distribution of Summed Hi Gain FADC slices Pixel ");
|
---|
91 |
|
---|
92 | fHAbsTime.SetName("HAbsTimeHiGainPix");
|
---|
93 | fHAbsTime.SetTitle("Distribution of Absolute Arrival Times Hi Gain Pixel ");
|
---|
94 | }
|
---|