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, 2/2005 <mailto:markus@ifae.es>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2005
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 | /////////////////////////////////////////////////////////////////////////////
|
---|
26 | //
|
---|
27 | // MJCalib
|
---|
28 | //
|
---|
29 | // A base class for the calibration jobs
|
---|
30 | //
|
---|
31 | /////////////////////////////////////////////////////////////////////////////
|
---|
32 | #include "MJCalib.h"
|
---|
33 |
|
---|
34 | ClassImp(MJCalib);
|
---|
35 |
|
---|
36 | using namespace std;
|
---|
37 |
|
---|
38 | const Int_t MJCalib::fgCheckedPixId = 100;
|
---|
39 |
|
---|
40 | // --------------------------------------------------------------------------
|
---|
41 | //
|
---|
42 | // Default constructor.
|
---|
43 | //
|
---|
44 | // Sets:
|
---|
45 | // - fDataFlag to kIsUseRootData
|
---|
46 | // - fCheckedPixId to fgCheckedPixId
|
---|
47 | // - fPixelCheck to kFALSE
|
---|
48 | // - fPulsePosCheck to kFALSE
|
---|
49 | //
|
---|
50 | MJCalib::MJCalib() : fStorage(0), fIsPixelCheck(kFALSE), fIsPulsePosCheck(kFALSE)
|
---|
51 | {
|
---|
52 | SetUseBlindPixel(kFALSE);
|
---|
53 | SetUsePINDiode(kFALSE);
|
---|
54 |
|
---|
55 | SetCheckedPixId();
|
---|
56 | }
|
---|
57 |
|
---|
58 | Bool_t MJCalib::CheckEnvLocal()
|
---|
59 | {
|
---|
60 | SetPixelCheck(GetEnv("PixelCheck", fIsPixelCheck));
|
---|
61 | SetPulsePosCheck(GetEnv("PulsePosCheck", fIsPulsePosCheck));
|
---|
62 | SetCheckedPixId(GetEnv("CheckedPixId",fCheckedPixId));
|
---|
63 |
|
---|
64 | if (HasEnv("StorageType"))
|
---|
65 | {
|
---|
66 | TString type = GetEnv("StorageType", "");
|
---|
67 | type = type.Strip(TString::kBoth);
|
---|
68 | type.ToLower();
|
---|
69 |
|
---|
70 | if (type == (TString)"hists")
|
---|
71 | SetHistsStorage();
|
---|
72 |
|
---|
73 | if (type == (TString)"no" || type == (TString)"nostorage")
|
---|
74 | SetNoStorage();
|
---|
75 | }
|
---|
76 |
|
---|
77 | if (!HasEnv("DataType"))
|
---|
78 | return kTRUE;
|
---|
79 |
|
---|
80 | return kTRUE;
|
---|
81 | }
|
---|