source: tags/Mars-V0.9.6/mhvstime/MHVsTime.cc

Last change on this file was 7210, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 9.5 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, 11/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
19!
20! Copyright: MAGIC Software Development, 2000-2004
21!
22!
23\* ======================================================================== */
24
25/////////////////////////////////////////////////////////////////////////////
26//
27// MHVsTime
28//
29// Use this class if you want to display any rule vs time (or event number)
30//
31// Axis titles
32// ===========
33//
34// 1) If no other title is given the rule for the y-axis is used.
35// 2) If the MH3 has a non-default title (MH3::SetTitle called)
36// this title is set as the histogram title. It can be used to overwrite
37// the axis titles. For more information see TH1::SetTitle, eg.
38// SetTitle("MyGraph;;Counts");
39// The title for the x-axis is ignored and set automatically (MAKE SURE
40// YOU HAVE TWO SEMICOLON!)
41//
42// eg.
43// MHVsTime hist("MHillas.fAlpha");
44// MHVsTime hist("MPointintPos.GetAbsErr");
45// MHVsTime hist("MPointintPos.GetAbsErr*kRad2Deg");
46//
47// To set a maximum number of data-points (eg. to display the last 20min
48// only) call SetMaxPts(200)
49//
50// SetMaxPts(-1) disables this feature.
51//
52/////////////////////////////////////////////////////////////////////////////
53#include "MHVsTime.h"
54
55#include <ctype.h> // tolower
56#include <fstream>
57
58#include <TPad.h>
59#include <TStyle.h>
60#include <TCanvas.h>
61
62#include <TGraphErrors.h>
63
64#include "MLog.h"
65#include "MLogManip.h"
66
67#include "MTime.h"
68#include "MParList.h"
69#include "MDataChain.h"
70#include "MRawEvtHeader.h"
71
72ClassImp(MHVsTime);
73
74using namespace std;
75
76const TString MHVsTime::gsDefName = "MHVsTime";
77const TString MHVsTime::gsDefTitle = "Container for a graph vs time/evtnumber";
78
79// --------------------------------------------------------------------------
80//
81// Default constructor. For more informations about a valid rule
82// see MDataChain.
83//
84MHVsTime::MHVsTime(const char *rule, const char *error)
85 : fGraph(NULL), fData(NULL), fError(NULL), fScale(1), fMaxPts(-1),
86 fNumEvents(1), fUseEventNumber(0)
87{
88 fName = gsDefName;
89 fTitle = gsDefTitle;
90
91 if (!rule)
92 return;
93
94 fData = new MDataChain(rule);
95
96 if (error)
97 fError = new MDataChain(error);
98
99 fGraph = error ? new TGraphErrors : new TGraph;
100 fGraph->SetPoint(0, 0, 0); // Dummy point!
101 fGraph->SetEditable(); // Used as flag: First point? yes/no
102 fGraph->SetMarkerStyle(kFullDotMedium);
103}
104
105// --------------------------------------------------------------------------
106//
107// Deletes the histogram
108//
109MHVsTime::~MHVsTime()
110{
111 if (fGraph)
112 delete fGraph;
113
114 if (fData)
115 delete fData;
116
117 if (fError)
118 delete fError;
119}
120
121// --------------------------------------------------------------------------
122//
123// Call SetMinimum of fGraph
124//
125void MHVsTime::SetMinimum(Double_t min)
126{
127 if (fGraph)
128 fGraph->SetMinimum(0);
129}
130
131// --------------------------------------------------------------------------
132//
133// Return the data members used by the data chain to be used in
134// MTask::AddBranchToList
135//
136TString MHVsTime::GetDataMember() const
137{
138 return fData ? fData->GetDataMember() : (TString)"";
139}
140
141// --------------------------------------------------------------------------
142//
143// PreProcess the MDataChain. Create a new TGraph. Delete an old one if
144// already allocated.
145//
146Bool_t MHVsTime::SetupFill(const MParList *plist)
147{
148 if (!fGraph || !fData)
149 {
150 *fLog << err << "ERROR - MHVsTime cannot be used with its default constructor!" << endl;
151 return kFALSE;
152 }
153
154 if (!fData->PreProcess(plist))
155 return kFALSE;
156
157 if (fError && !fError->PreProcess(plist))
158 return kFALSE;
159
160 fGraph->Set(1);
161 fGraph->SetPoint(0, 0, 0); // Dummy point!
162 fGraph->SetEditable(); // Used as flag: First point? yes/no
163
164 TString title(fData ? GetRule() : (TString)"Graph");
165 title += " vs ";
166 title += fUseEventNumber ? "Event Number" : "Time";
167
168 fGraph->SetNameTitle(fName, fTitle==gsDefTitle?title:fTitle);
169
170 fMean = 0;
171 fN = 0;
172
173 return kTRUE;
174}
175
176// --------------------------------------------------------------------------
177//
178// Set the name of the TGraph and the MHVsTime container
179//
180void MHVsTime::SetName(const char *name)
181{
182 fGraph->SetName(name);
183 MH::SetName(name);
184}
185
186// --------------------------------------------------------------------------
187//
188// Set the title of the TGraph and the MHVsTime container
189//
190void MHVsTime::SetTitle(const char *title)
191{
192 fGraph->SetTitle(title);
193 MH::SetTitle(title);
194}
195
196// --------------------------------------------------------------------------
197//
198// Set the next data point. If the graph exceeds fMaxPts remove the first
199//
200Bool_t MHVsTime::Fill(const MParContainer *par, const Stat_t w)
201{
202 Double_t t = 0;
203 if (fUseEventNumber)
204 {
205 const MRawEvtHeader *h = dynamic_cast<const MRawEvtHeader*>(par);
206 t = h ? h->GetDAQEvtNumber() : fGraph->GetN();
207 }
208 else
209 {
210 const MTime *tm = dynamic_cast<const MTime*>(par);
211 if (!tm)
212 {
213 *fLog << err << dbginf << "No MTime found..." << endl;
214 return kFALSE;
215 }
216 // If the time is not valid skip this entry
217 if (!*tm)
218 return kTRUE;
219
220 // Do not fill events with equal time
221 if (*tm==fLast || *tm==MTime())
222 return kTRUE;
223
224 fLast = *tm;
225
226 t = tm->GetAxisTime();
227 }
228
229 const Double_t v = fData->GetValue();
230 const Double_t e = fError ? fError->GetValue() : 0;
231
232 //*fLog << all << "ADD " << v << " " << e << endl;
233
234 fMean += v;
235 fMeanErr += e;
236 fN++;
237
238 if (fN==fNumEvents)
239 {
240 if (fMaxPts>0 && fGraph->GetN()>fMaxPts || fGraph->IsEditable())
241 {
242 fGraph->RemovePoint(0);
243 fGraph->SetEditable(kFALSE);
244 }
245
246 fGraph->SetPoint(fGraph->GetN(), t, fMean/fN*fScale);
247
248 if (fError)
249 static_cast<TGraphErrors*>(fGraph)->SetPointError(fGraph->GetN()-1, 0, fMeanErr/fN*fScale);
250
251 fMean = 0;
252 fMeanErr = 0;
253 fN = 0;
254 }
255
256 return kTRUE;
257}
258
259void MHVsTime::Paint(Option_t *opt)
260{
261 /*
262 *fLog << all << fGraph << " " << gPad->GetName() << " ----> Paint " << opt << endl;
263 TListIter Next(gPad->GetListOfPrimitives()); TObject *obj;
264 while ((obj=Next())) *fLog << obj << " " << obj->GetName() << " " << obj->ClassName() << " " << Next.GetOption() << endl;
265 */
266
267 if (!fGraph)
268 return;
269
270// *fLog << all << fGraph->GetN() << " " << opt << endl;
271
272 if (fGraph->GetN()==0)
273 return;
274
275 TString str(opt);
276 if (!str.Contains("A"))
277 str += "A";
278 if (!str.Contains("P"))
279 str += "P";
280 if (str.Contains("same", TString::kIgnoreCase))
281 {
282 str.ReplaceAll("same", "");
283 str.ReplaceAll("A", "");
284 }
285
286 // SetPoint deletes the histogram!
287 if (fUseEventNumber)
288 fGraph->GetHistogram()->SetXTitle("Event Number");
289 else
290 {
291 fGraph->GetHistogram()->SetXTitle("Time");
292 fGraph->GetHistogram()->GetXaxis()->SetLabelSize(0.033);
293 fGraph->GetHistogram()->GetXaxis()->SetTimeFormat("%H:%M %F1995-01-01 00:00:00 GMT");
294 fGraph->GetHistogram()->GetXaxis()->SetTimeDisplay(1);
295 }
296
297 if (TestBit(kIsLogy))
298 gPad->SetLogy();
299
300 // This is a workaround if the TGraph has only one point.
301 // Otherwise MStatusDisplay::Update hangs.
302 gPad->GetListOfPrimitives()->Remove(fGraph);
303 fGraph->Draw(fGraph->GetN()<2 ? "A" : str.Data());
304 //gPad->GetListOfPrimitives()->Add(fGraph, fGraph->GetN()<2 ? "A" : opt);
305 // AppendPad(str);
306 // fGraph->Draw(str);
307
308}
309
310// --------------------------------------------------------------------------
311//
312// This displays the TGraph like you expect it to be (eg. time on the axis)
313// It should also make sure, that the displayed time always is UTC and
314// not local time...
315//
316void MHVsTime::Draw(Option_t *opt)
317{
318 TVirtualPad *pad = gPad ? gPad : MakeDefCanvas(fGraph);
319 pad->SetBorderMode(0);
320 AppendPad(opt);
321}
322
323// --------------------------------------------------------------------------
324//
325// Used to rebuild a MHVsTime object of the same type (data members,
326// dimension, ...)
327//
328MParContainer *MHVsTime::New() const
329{
330 MHVsTime *h=new MHVsTime(fData ? (const char*)GetRule() : NULL);
331 h->SetScale(fScale);
332 if (fUseEventNumber)
333 h->SetUseEventNumber();
334 h->SetMaxPts(fMaxPts);
335 return h;
336}
337
338TString MHVsTime::GetRule() const
339{
340 return fData ? fData->GetRule() : (TString)"";
341}
342
343// --------------------------------------------------------------------------
344//
345// Returns the total number of bins in a histogram (excluding under- and
346// overflow bins)
347//
348Int_t MHVsTime::GetNbins() const
349{
350 return fGraph->GetN();
351}
352/*
353TH1 *MHVsTime::GetHist()
354{
355 return fGraph ? fGraph->GetHistogram() : 0;
356}
357
358const TH1 *MHVsTime::GetHist() const
359{
360 return fGraph ? fGraph->GetHistogram() : 0;
361}
362
363TH1 *MHVsTime::GetHistByName(const TString name)
364{
365 return GetHist();
366}
367*/
Note: See TracBrowser for help on using the repository browser.