source: JEM-EUSO/esaf_lal/tags/v1_r0/esaf/packages/reconstruction/framework/include/RecoGlobalData.hh @ 117

Last change on this file since 117 was 117, checked in by moretto, 11 years ago

ESAF version compilable on mac OS

File size: 1.8 KB
Line 
1// $Id: RecoGlobalData.hh 2713 2006-06-06 12:28:46Z thea $
2// Author:    2006/06/05
3
4/*****************************************************************************
5 * ESAF: Euso Simulation and Analysis Framework                              *
6 *                                                                           *
7 *  Id: RecoGlobalData                                                       *
8 *  Package: <packagename>                                                   *
9 *  Coordinator: <coordinator>                                               *
10 *                                                                           *
11 *****************************************************************************/
12
13#ifndef __RECOGLOBALDATA_HH__
14#define __RECOGLOBALDATA_HH__
15
16#include "euso.hh"
17#include "RecoData.hh"
18
19////////////////////////////////////////////////////////////////////////////////
20//                                                                            //
21// RecoGlobalData                                                             //
22//                                                                            // 
23// <brief class description>                                                  // 
24//                                                                            // 
25////////////////////////////////////////////////////////////////////////////////
26
27class RecoGlobalData : public RecoData {
28public:
29    RecoGlobalData( const string& name );
30    virtual ~RecoGlobalData();
31
32    virtual const string& GetName() const { return fDataName; }
33   
34    virtual void CleanMaps();
35
36    virtual void SetIssuer( const string& name ) { fIssuer = name; }
37    virtual const string& GetIssuer() const { return fIssuer; }
38private:
39
40    string fDataName;
41    string fIssuer;
42   
43    ClassDef(RecoGlobalData,0)
44};
45
46#endif  /* __GLOBALDATA_HH__ */
47
Note: See TracBrowser for help on using the repository browser.