source: trunk/MagicSoft/Mars/mhist/MFillHHillas.cc@ 891

Last change on this file since 891 was 887, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 3.1 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 "MFillHHillas.h"
41
42#include "MLog.h"
43#include "MLogManip.h"
44
45#include "MHillas.h"
46#include "MHHillas.h"
47#include "MParList.h"
48
49ClassImp(MFillHHillas);
50
51// --------------------------------------------------------------------------
52MFillHHillas::MFillHHillas (const char *name, const char *title)
53{
54 *fName = name ? name : "MFillHHillas";
55 *fTitle = title ? title : "Task to fill Hillas histograms";
56}
57
58// --------------------------------------------------------------------------
59Bool_t MFillHHillas::PreProcess (MParList *pList)
60{
61 fEvt = (MHillas*)pList->FindObject("MHillas");
62 if (!fEvt)
63 {
64 *fLog << dbginf << "MHillas not found... aborting." << endl;
65 return kFALSE ;
66 }
67
68 fHistos = (MHHillas*)pList->FindCreateObj("MHHillas");
69 if (!fHistos)
70 return kFALSE;
71
72 return kTRUE ;
73}
74
75// --------------------------------------------------------------------------
76Bool_t MFillHHillas::Process()
77{
78 fHistos->Fill(fEvt);
79
80 return kTRUE;
81}
82
83Bool_t MFillHHillas::PostProcess()
84{
85 fHistos->SetReadyToSave();
86 return kTRUE;
87}
Note: See TracBrowser for help on using the repository browser.