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 12/2003 <mailto:markus@ifae.es>
|
---|
19 | ! Author(s): Thomas Bretz 12/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
20 | !
|
---|
21 | ! Copyright: MAGIC Software Development, 2000-2004
|
---|
22 | !
|
---|
23 | !
|
---|
24 | \* ======================================================================== */
|
---|
25 |
|
---|
26 | /////////////////////////////////////////////////////////////////////////////
|
---|
27 | //
|
---|
28 | // MExtractedSignalPix
|
---|
29 | //
|
---|
30 | // This is the storage container to hold informations about the pedestal
|
---|
31 | // (offset) value of one Pixel (PMT).
|
---|
32 | //
|
---|
33 | /////////////////////////////////////////////////////////////////////////////
|
---|
34 | #include "MExtractedSignalPix.h"
|
---|
35 |
|
---|
36 | #include "MLog.h"
|
---|
37 | #include "MLogManip.h"
|
---|
38 |
|
---|
39 | ClassImp(MExtractedSignalPix);
|
---|
40 |
|
---|
41 | using namespace std;
|
---|
42 |
|
---|
43 | static const Float_t gkSignalInitializer = 99999.9;
|
---|
44 |
|
---|
45 | // ------------------------------------------------------------------------
|
---|
46 | //
|
---|
47 | // MExtractedSignalPix holds the extracted signal (HiGain and LoGain)
|
---|
48 | // of the FADC slices and its error.
|
---|
49 | //
|
---|
50 | // Additionally, the number of saturated HiGain and LoGain Slices are stored.
|
---|
51 | //
|
---|
52 | // Default values for the extracted signals are: 99999.9
|
---|
53 | //
|
---|
54 | MExtractedSignalPix::MExtractedSignalPix(const char* name, const char* title)
|
---|
55 | {
|
---|
56 | fName = name ? name : "MExtractedSignalPix";
|
---|
57 | fTitle = title ? title : "Container of the Extracted Signals";
|
---|
58 |
|
---|
59 | Clear();
|
---|
60 |
|
---|
61 | }
|
---|
62 |
|
---|
63 |
|
---|
64 | // ------------------------------------------------------------------------
|
---|
65 | //
|
---|
66 | // Invalidate values
|
---|
67 | //
|
---|
68 | void MExtractedSignalPix::Clear(Option_t *o)
|
---|
69 | {
|
---|
70 | fExtractedSignalHiGain = gkSignalInitializer;
|
---|
71 | fExtractedSignalHiGainError = -1;
|
---|
72 | fExtractedSignalLoGain = gkSignalInitializer;
|
---|
73 | fExtractedSignalLoGainError = -1;
|
---|
74 |
|
---|
75 | fLoGainUsed = kFALSE;
|
---|
76 |
|
---|
77 | fNumHiGainSaturated = 0;
|
---|
78 | fNumLoGainSaturated = 0;
|
---|
79 |
|
---|
80 | fChisquare = -1.;
|
---|
81 | }
|
---|
82 |
|
---|
83 | void MExtractedSignalPix::SetExtractedSignal(Float_t sig, Float_t sigerr)
|
---|
84 | {
|
---|
85 | fExtractedSignalHiGain = sig;
|
---|
86 | fExtractedSignalHiGainError = sigerr;
|
---|
87 | }
|
---|
88 |
|
---|
89 | void MExtractedSignalPix::SetExtractedSignal(Float_t sighi, Float_t sighierr,
|
---|
90 | Float_t siglo, Float_t sigloerr)
|
---|
91 | {
|
---|
92 | fExtractedSignalHiGain = sighi;
|
---|
93 | fExtractedSignalHiGainError = sighierr;
|
---|
94 | fExtractedSignalLoGain = siglo;
|
---|
95 | fExtractedSignalLoGainError = sigloerr;
|
---|
96 | }
|
---|
97 |
|
---|
98 | Bool_t MExtractedSignalPix::IsValid() const
|
---|
99 | {
|
---|
100 | return (!IsLoGainUsed() && fExtractedSignalHiGainError >= 0) || (IsLoGainUsed() && fExtractedSignalLoGainError >= 0);
|
---|
101 | }
|
---|
102 |
|
---|
103 | void MExtractedSignalPix::SetGainSaturation(Bool_t sat, Byte_t higain, Byte_t logain)
|
---|
104 | {
|
---|
105 |
|
---|
106 | fLoGainUsed = sat;
|
---|
107 | fNumHiGainSaturated = higain;
|
---|
108 | fNumLoGainSaturated = logain;
|
---|
109 | }
|
---|
110 |
|
---|
111 | void MExtractedSignalPix::Print(Option_t *o) const
|
---|
112 | {
|
---|
113 | *fLog << " Signal: " << fExtractedSignalHiGain
|
---|
114 | << " +- " << fExtractedSignalHiGainError
|
---|
115 | << " LoGain? " << fLoGainUsed
|
---|
116 | << " Nr. Sat. Hi Gain: " << fNumHiGainSaturated
|
---|
117 | << " Nr. Sat. Lo Gain: " << fNumLoGainSaturated
|
---|
118 | << endl;
|
---|
119 | }
|
---|