source: trunk/MagicSoft/Mars/mhist/MFillHStarMap.cc@ 855

Last change on this file since 855 was 855, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 2.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/2000 (tbretz@uni-sw.gwdg.de)
19!
20! Copyright: MAGIC Software Development, 2000-2001
21!
22!
23\* ======================================================================== */
24
25////////////////////////////////////////////////////////////////////////
26//
27// MFillHStarMap
28//
29// This task fills a star map (a 2D histogram, MHStarMap)
30// from the calculated hillas parameter (MHillas).
31// The algorithm for this can be found in MHStarMap::Fill
32//
33////////////////////////////////////////////////////////////////////////
34#include "MFillHStarMap.h"
35
36#include "MLog.h"
37#include "MLogManip.h"
38#include "MHStarMap.h"
39#include "MHillas.h"
40#include "MParList.h"
41
42ClassImp(MFillHStarMap)
43
44// --------------------------------------------------------------------------
45MFillHStarMap::MFillHStarMap (const char *name, const char *title)
46{
47 *fName = name ? name : "MFillHStarMap";
48 *fTitle = title ? title : "Task to fill a StarMap";
49}
50
51// --------------------------------------------------------------------------
52Bool_t MFillHStarMap::PreProcess (MParList *pList)
53{
54 fEvt = (MHillas*)pList->FindObject("MHillas");
55 if (!fEvt)
56 {
57 *fLog << dbginf << "MHillas not found... aborting." << endl;
58 return kFALSE ;
59 }
60
61 fHistos = (MHStarMap*)pList->FindCreateObj("MHStarMap");
62 if (!fHistos)
63 return kFALSE;
64
65 return kTRUE ;
66}
67
68// --------------------------------------------------------------------------
69Bool_t MFillHStarMap::Process()
70{
71 fHistos->Fill(fEvt);
72
73 return kTRUE;
74}
75
76Bool_t MFillHStarMap::PostProcess()
77{
78 fHistos->SetReadyToSave();
79 return kTRUE;
80}
Note: See TracBrowser for help on using the repository browser.