source: trunk/MagicSoft/Mars/mhist/MHCamEvent.cc@ 2264

Last change on this file since 2264 was 2244, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 4.3 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/2002 <mailto:tbretz@astro.uni-wuerzburg.de>
19!
20! Copyright: MAGIC Software Development, 2000-2003
21!
22!
23\* ======================================================================== */
24
25/////////////////////////////////////////////////////////////////////////////
26//
27// MHCamEvent
28//
29// A histogram to store the sum of camera events. This can be photons,
30// currents or enything else derived from MCamEvent
31//
32/////////////////////////////////////////////////////////////////////////////
33#include "MHCamEvent.h"
34
35#include <TCanvas.h>
36
37#include "MLog.h"
38#include "MLogManip.h"
39
40#include "MParList.h"
41#include "MCamEvent.h"
42#include "MHCamera.h"
43
44#include "MGeomCam.h"
45
46ClassImp(MHCamEvent);
47
48using namespace std;
49
50// --------------------------------------------------------------------------
51//
52// Initialize the name and title of the task.
53// Resets the sum histogram
54//
55MHCamEvent::MHCamEvent(const char *name, const char *title)
56 : fSum(NULL), fEvt(NULL), fType(0)
57{
58 //
59 // set the name and title of this object
60 //
61 fName = name ? name : "MHCamEvent";
62 fTitle = title ? title : "Average of MCamEvents";
63}
64
65// --------------------------------------------------------------------------
66//
67// Delete the corresponding camera display if available
68//
69MHCamEvent::~MHCamEvent()
70{
71 if (fSum)
72 delete fSum;
73}
74
75// --------------------------------------------------------------------------
76//
77// Get the event (MCamEvent) the histogram might be filled with. If
78// it is not given, it is assumed, that it is filled with the argument
79// of the Fill function.
80// Looks for the camera geometry MGeomCam and resets the sum histogram.
81//
82Bool_t MHCamEvent::SetupFill(const MParList *plist)
83{
84 fEvt = (MCamEvent*)plist->FindObject(fNameEvt, "MCamEvent");
85 if (!fEvt)
86 {
87 if (!fNameEvt.IsNull())
88 {
89 *fLog << err << GetDescriptor() << ": No " << fNameEvt <<" [MCamEvent] available..." << endl;
90 return kFALSE;
91 }
92 *fLog << warn << GetDescriptor() << ": No MCamEvent available..." << endl;
93 }
94
95 MGeomCam *cam = (MGeomCam*)plist->FindObject("MGeomCam");
96 if (!cam)
97 *fLog << warn << GetDescriptor() << ": No MGeomCam found." << endl;
98
99 if (fSum)
100 delete (fSum);
101 fSum = new MHCamera(*cam, fNameEvt+";avg", fTitle);
102 fSum->SetYTitle("a.u.");
103
104 return kTRUE;
105}
106
107// --------------------------------------------------------------------------
108//
109// Fill the histograms with data from a MCamEvent-Container.
110//
111Bool_t MHCamEvent::Fill(const MParContainer *par, const Stat_t w)
112{
113 const MCamEvent *evt = par ? dynamic_cast<const MCamEvent*>(par) : fEvt;
114 if (!evt)
115 {
116 *fLog << err << dbginf << "No MCamEvent found..." << endl;
117 return kFALSE;
118 }
119 fSum->AddCamContent(*evt, fType);
120
121 return kTRUE;
122}
123
124// --------------------------------------------------------------------------
125//
126// Scale the sum container with the number of entries
127//
128Bool_t MHCamEvent::Finalize()
129{
130 if (fSum->GetEntries()>0)
131 fSum->Scale(1./fSum->GetEntries());
132 return kTRUE;
133}
134
135// --------------------------------------------------------------------------
136//
137// Return fSum.
138//
139TH1 *MHCamEvent::GetHistByName(const TString name)
140{
141 return fSum;
142}
143
144void MHCamEvent::Draw(Option_t *)
145{
146 TVirtualPad *pad = gPad ? gPad : MakeDefCanvas(this);
147 pad->SetBorderMode(0);
148
149 pad->Divide(2,2);
150
151 pad->cd(1);
152 gPad->SetBorderMode(0);
153 gPad->Divide(1,1);
154 gPad->cd(1);
155 gPad->SetBorderMode(0);
156 fSum->Draw();
157
158 pad->cd(3);
159 gPad->SetBorderMode(0);
160 fSum->Draw("EPhist");
161}
Note: See TracBrowser for help on using the repository browser.