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 |
|
---|
41 | ClassImp(MFillHHillas)
|
---|
42 |
|
---|
43 | // --------------------------------------------------------------------------
|
---|
44 | MFillHHillas::MFillHHillas (const char *name, const char *title)
|
---|
45 | {
|
---|
46 | *fName = name ? name : "MFillHHillas";
|
---|
47 | *fTitle = title ? title : "Task to fill Hillas histograms";
|
---|
48 | }
|
---|
49 |
|
---|
50 | // --------------------------------------------------------------------------
|
---|
51 | Bool_t MFillHHillas::PreProcess (MParList *pList)
|
---|
52 | {
|
---|
53 | fEvt = (MHillas*)pList->FindObject("MHillas");
|
---|
54 | if (!fEvt)
|
---|
55 | {
|
---|
56 | *fLog << dbginf << "MHillas not found... aborting." << endl;
|
---|
57 | return kFALSE ;
|
---|
58 | }
|
---|
59 |
|
---|
60 | fHistos = (MHHillas*)pList->FindCreateObj("MHHillas");
|
---|
61 | if (!fHistos)
|
---|
62 | return kFALSE;
|
---|
63 |
|
---|
64 | return kTRUE ;
|
---|
65 | }
|
---|
66 |
|
---|
67 | // --------------------------------------------------------------------------
|
---|
68 | Bool_t MFillHHillas::Process()
|
---|
69 | {
|
---|
70 | fHistos->Fill(fEvt);
|
---|
71 |
|
---|
72 | return kTRUE;
|
---|
73 | }
|
---|