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

Last change on this file since 872 was 859, 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#include "MHHillas.h"
45#include "MParList.h"
46
47ClassImp(MFillHHillas);
48
49// --------------------------------------------------------------------------
50MFillHHillas::MFillHHillas (const char *name, const char *title)
51{
52 *fName = name ? name : "MFillHHillas";
53 *fTitle = title ? title : "Task to fill Hillas histograms";
54}
55
56// --------------------------------------------------------------------------
57Bool_t MFillHHillas::PreProcess (MParList *pList)
58{
59 fEvt = (MHillas*)pList->FindObject("MHillas");
60 if (!fEvt)
61 {
62 *fLog << dbginf << "MHillas not found... aborting." << endl;
63 return kFALSE ;
64 }
65
66 fHistos = (MHHillas*)pList->FindCreateObj("MHHillas");
67 if (!fHistos)
68 return kFALSE;
69
70 return kTRUE ;
71}
72
73// --------------------------------------------------------------------------
74Bool_t MFillHHillas::Process()
75{
76 fHistos->Fill(fEvt);
77
78 return kTRUE;
79}
80
81Bool_t MFillHHillas::PostProcess()
82{
83 fHistos->SetReadyToSave();
84 return kTRUE;
85}
Note: See TracBrowser for help on using the repository browser.