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

Last change on this file since 761 was 749, checked in by tbretz, 24 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 2.0 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////////////////////////////////////////////////////////////////////////
34#include "MFillHHillas.h"
35
36#include "MLog.h"
37#include "MLogManip.h"
38#include "MHHillas.h"
39#include "MParList.h"
40
41ClassImp(MFillHHillas)
42
43MFillHHillas::MFillHHillas (const char *name, const char *title)
44{
45 *fName = name ? name : "MFillHHillas";
46 *fTitle = title ? title : "Task to fill Hillas histograms";
47}
48
49Bool_t MFillHHillas::PreProcess (MParList *pList)
50{
51 fEvt = (MHillas*)pList->FindObject("MHillas");
52 if (!fEvt)
53 {
54 *fLog << dbginf << "MHillas not found... aborting." << endl;
55 return kFALSE ;
56 }
57
58 fHistos = (MHHillas*)pList->FindCreateObj("MHHillas");
59 if (!fHistos)
60 return kFALSE;
61
62 return kTRUE ;
63}
64
65Bool_t MFillHHillas::Process()
66{
67 fHistos->Fill(fEvt);
68
69 return kTRUE;
70}
Note: See TracBrowser for help on using the repository browser.