source: trunk/MagicSoft/Mars/mimage/MHillasSrcCalc.cc@ 2161

Last change on this file since 2161 was 2161, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 5.0 KB
Line 
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 12/2000 <mailto:tbretz@uni-sw.gwdg.de>
19! Author(s): Rudolf Bock 10/2001 <mailto:Rudolf.Bock@cern.ch>
20!
21! Copyright: MAGIC Software Development, 2000-2002
22!
23!
24\* ======================================================================== */
25
26//////////////////////////////////////////////////////////////////////////////
27//
28// MHillasSrcCalc
29//
30// Task to calculate the source dependant part of the hillas parameters
31//
32//////////////////////////////////////////////////////////////////////////////
33#include "MHillasSrcCalc.h"
34
35#include <fstream.h>
36
37#include "MParList.h"
38
39#include "MSrcPosCam.h"
40#include "MHillasSrc.h"
41
42#include "MLog.h"
43#include "MLogManip.h"
44
45ClassImp(MHillasSrcCalc);
46
47static const TString gsDefName = "MHillasSrcCalc";
48static const TString gsDefTitle = "Calculate position dependant image parameters";
49
50// -------------------------------------------------------------------------
51//
52// Default constructor. The first argument is the name of a container
53// containing the source position in the camera plain (MScrPosCam).
54// The default is "MSrcPosCam". hil is the name of a container
55// of type MHillasSrc (or derived) in which the parameters are stored
56// The default is "MHillasSrc"
57//
58MHillasSrcCalc::MHillasSrcCalc(const char *src, const char *hil,
59 const char *name, const char *title)
60 : fHillas(NULL), fSrcPos(NULL), fHillasSrc(NULL)
61{
62 fName = name ? name : gsDefName.Data();
63 fTitle = title ? title : gsDefTitle.Data();
64
65 fSrcName = src;
66 fHillasName = hil;
67 fHillasInput = "MHillas";
68}
69
70// -------------------------------------------------------------------------
71//
72Bool_t MHillasSrcCalc::PreProcess(MParList *pList)
73{
74 fHillas = (MHillas*)pList->FindObject(fHillasInput, "MHillas");
75 if (!fHillas)
76 {
77 *fLog << err << dbginf << "MHillas not found... aborting." << endl;
78 return kFALSE;
79 }
80
81 fSrcPos = (MSrcPosCam*)pList->FindObject(fSrcName, "MSrcPosCam");
82 if (!fSrcPos)
83 {
84 *fLog << warn << fSrcName << " [MSrcPosCam] not found... creating default MSrcPosCam." << endl;
85 fSrcPos = (MSrcPosCam*)pList->FindCreateObj("MSrcPosCam", fSrcName);
86 if (!fSrcPos)
87 return kFALSE;
88 }
89
90 fHillasSrc = (MHillasSrc*)pList->FindCreateObj("MHillasSrc", fHillasName);
91 if (!fHillasSrc)
92 return kFALSE;
93
94 fHillasSrc->SetSrcPos(fSrcPos);
95
96 fErrors = 0;
97
98 return kTRUE;
99}
100
101// -------------------------------------------------------------------------
102//
103Bool_t MHillasSrcCalc::Process()
104{
105
106 if (!fHillasSrc->Calc(fHillas))
107 {
108 fErrors++;
109 return kCONTINUE;
110
111 }
112 return kTRUE;
113}
114
115// --------------------------------------------------------------------------
116//
117// Prints some statistics about the hillas calculation. The percentage
118// is calculated with respect to the number of executions of this task.
119//
120Bool_t MHillasSrcCalc::PostProcess()
121{
122 if (GetNumExecutions()==0)
123 return kTRUE;
124
125 *fLog << inf << endl;
126 *fLog << GetDescriptor() << " execution statistics:" << endl;
127 *fLog << dec << setfill(' ');
128 *fLog << " " << fErrors << " (" << (int)(fErrors*100/GetNumExecutions()) << "%) Evts skipped due to: Dist==0" << endl;
129 *fLog << endl;
130
131 return kTRUE;
132}
133
134// --------------------------------------------------------------------------
135//
136// Implementation of SavePrimitive. Used to write the call to a constructor
137// to a macro. In the original root implementation it is used to write
138// gui elements to a macro-file.
139//
140void MHillasSrcCalc::StreamPrimitive(ofstream &out) const
141{
142 if (fHillas)
143 fHillas->SavePrimitive(out);
144
145 if (fSrcPos)
146 fSrcPos->SavePrimitive(out);
147
148 if (fHillasSrc)
149 fHillasSrc->SavePrimitive(out);
150
151 out << " MHillasSrcCalc " << GetUniqueName() << "(";
152
153 if (fSrcPos)
154 out << "&" << fSrcPos->GetUniqueName();
155 else
156 out << "\"" << fSrcName << "\"";
157
158 out << ", ";
159
160 if (fHillasSrc)
161 out << "&" << fHillasSrc->GetUniqueName();
162 else
163 out << "\"" << fHillasName << "\"";
164
165 if (fName!=gsDefName || fTitle!=gsDefTitle)
166 {
167 out << ", \"" << fName << "\"";
168 if (fTitle!=gsDefTitle)
169 out << ", \"" << fTitle << "\"";
170 }
171 out << ");" << endl;
172}
Note: See TracBrowser for help on using the repository browser.