source: trunk/MagicSoft/Mars/mhist/MFillH.cc@ 887

Last change on this file since 887 was 887, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 3.8 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): Harald Kornmayer 1/2001 (harald@mppmu.mpg.de)
19! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de)
20!
21! Copyright: MAGIC Software Development, 2000-2001
22!
23!
24\* ======================================================================== */
25
26//////////////////////////////////////////////////////////////////////////////
27// //
28// MFillHHillas //
29// //
30// This task fills the hillas parameter from MHillas into //
31// histograms (MHHillas) //
32// //
33// Input Containers: //
34// MHillas //
35// //
36// Output Containers: //
37// MHHillas //
38// //
39//////////////////////////////////////////////////////////////////////////////
40#include "MFillH.h"
41
42#include "MLog.h"
43#include "MLogManip.h"
44
45#include "MH.h"
46#include "MParList.h"
47
48ClassImp(MFillH);
49
50// --------------------------------------------------------------------------
51void MFillH::Init(const char *name, const char *title)
52{
53 *fName = name ? name : "MFillH";
54 *fTitle = title ? title : "Task to fill Mars histograms";
55}
56
57MFillH::MFillH(const char *par, const char *hist, const char *name, const char *title)
58{
59 Init(name, title);
60
61 fParContainerName = par;
62 fHName = hist;
63}
64
65MFillH::MFillH(const MParContainer *par, const char *hist, const char *name, const char *title)
66{
67 Init(name, title);
68
69 fParContainer = par;
70 fHName = hist;
71}
72
73MFillH::MFillH(const char *par, MH *hist, const char *name, const char *title)
74{
75 Init(name, title);
76
77 fParContainerName = par;
78 fH = hist;
79}
80
81MFillH::MFillH(const MParContainer *par, MH *hist, const char *name, const char *title)
82{
83 Init(name, title);
84
85 fParContainer = par;
86 fH = hist;
87}
88
89// --------------------------------------------------------------------------
90Bool_t MFillH::PreProcess(MParList *pList)
91{
92 if (!fParContainer)
93 {
94 fParContainer = (MParContainer*)pList->FindObject(fParContainerName);
95 if (!fParContainer)
96 {
97 *fLog << dbginf << fParContainerName << " not found... aborting." << endl;
98 return kFALSE ;
99 }
100 }
101
102 if (!fH)
103 {
104 fH = (MH*)pList->FindCreateObj(fHName);
105 if (!fH)
106 return kFALSE;
107 }
108
109 return kTRUE ;
110}
111
112// --------------------------------------------------------------------------
113Bool_t MFillH::Process()
114{
115 fH->Fill(fParContainer);
116
117 return kTRUE;
118}
119
120Bool_t MFillH::PostProcess()
121{
122 fH->SetReadyToSave();
123 return kTRUE;
124}
Note: See TracBrowser for help on using the repository browser.