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): Thomas Bretz, 09/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2003
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 | //////////////////////////////////////////////////////////////////////////////
|
---|
26 | //
|
---|
27 | // MGeomApply
|
---|
28 | //
|
---|
29 | // Applies the geometry to geometry dependant containers.
|
---|
30 | //
|
---|
31 | // It changes the size of the arrays in the containers to a size
|
---|
32 | // matching the number of pixels, eg:
|
---|
33 | //
|
---|
34 | // MPedestalCam
|
---|
35 | // MBlindPixels
|
---|
36 | //
|
---|
37 | // It uses the geometry (MGeomCam) found in the parameter list.
|
---|
38 | // If it is not found the task tries to create the geometry
|
---|
39 | // specified in the constructor. The default geometry is
|
---|
40 | // MGeomCamMagic.
|
---|
41 | //
|
---|
42 | // Input Containers:
|
---|
43 | // [MGeomCam]
|
---|
44 | //
|
---|
45 | // Output Containers:
|
---|
46 | // [MPedestalCam]
|
---|
47 | // [MBlindPixels]
|
---|
48 | //
|
---|
49 | //////////////////////////////////////////////////////////////////////////////
|
---|
50 | #include "MGeomApply.h"
|
---|
51 |
|
---|
52 | #include "MLog.h"
|
---|
53 | #include "MLogManip.h"
|
---|
54 |
|
---|
55 | #include "MParList.h"
|
---|
56 |
|
---|
57 | #include "MGeomCam.h"
|
---|
58 | #include "MPedestalCam.h"
|
---|
59 | #include "MBlindPixels.h"
|
---|
60 |
|
---|
61 | ClassImp(MGeomApply);
|
---|
62 |
|
---|
63 | using namespace std;
|
---|
64 |
|
---|
65 | // --------------------------------------------------------------------------
|
---|
66 | //
|
---|
67 | // Default constructor. MGeomCamMagic is the default geometry.
|
---|
68 | //
|
---|
69 | MGeomApply::MGeomApply(const char *name, const char *title) : fGeomName("MGeomCamMagic")
|
---|
70 | {
|
---|
71 | fName = name ? name : "MGeomApply";
|
---|
72 | fTitle = title ? title : "Task to apply geometry settings";
|
---|
73 | }
|
---|
74 |
|
---|
75 | // --------------------------------------------------------------------------
|
---|
76 | //
|
---|
77 | // Try to find 'MGeomCam' in the Parameter List. If it is not found,
|
---|
78 | // try to create a fGeomName object.
|
---|
79 | //
|
---|
80 | Int_t MGeomApply::PreProcess(MParList *pList)
|
---|
81 | {
|
---|
82 | MGeomCam *cam = (MGeomCam*)pList->FindObject(AddSerialNumber("MGeomCam"));
|
---|
83 | if (cam)
|
---|
84 | return kTRUE;
|
---|
85 |
|
---|
86 | cam = (MGeomCam*)pList->FindCreateObj(AddSerialNumber(fGeomName), "MGeomCam");
|
---|
87 |
|
---|
88 | return cam ? kTRUE : kFALSE;
|
---|
89 | }
|
---|
90 |
|
---|
91 | // --------------------------------------------------------------------------
|
---|
92 | //
|
---|
93 | // Try to find 'MGeomCam' in the Parameter List. If it is not found,
|
---|
94 | // processing is stopped.
|
---|
95 | //
|
---|
96 | // The size of MPedestalCam and MBlindPixels is set accordingly.
|
---|
97 | //
|
---|
98 | Bool_t MGeomApply::ReInit(MParList *pList)
|
---|
99 | {
|
---|
100 | MGeomCam *cam = (MGeomCam*)pList->FindObject(AddSerialNumber("MGeomCam"));
|
---|
101 | if (!cam)
|
---|
102 | {
|
---|
103 | *fLog << err << GetDescriptor() << ": No MGeomCam found... aborting." << endl;
|
---|
104 | return kFALSE;
|
---|
105 | }
|
---|
106 |
|
---|
107 | MPedestalCam *ped = (MPedestalCam*)pList->FindObject(AddSerialNumber("MPedestalCam"));
|
---|
108 | if (ped)
|
---|
109 | ped->InitSize(cam->GetNumPixels());
|
---|
110 |
|
---|
111 | MBlindPixels *bnd = (MBlindPixels*)pList->FindObject(AddSerialNumber("MBlindPixels"));
|
---|
112 | if (bnd)
|
---|
113 | bnd->InitSize(cam->GetNumPixels());
|
---|
114 |
|
---|
115 | return kTRUE;
|
---|
116 | }
|
---|