source: JEM-EUSO/esaf_cc_at_lal/packages/reconstruction/framework/src/RecoModule.cc @ 114

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

actual version of ESAF at CCin2p3

File size: 420 bytes
Line 
1// ESAF : Euso Simulation and Analysis Framework
2// $Id: RecoModule.cc 1217 2004-11-25 18:49:32Z naumov $
3// Marco Pallavicini created Oct, 16 2003
4
5#include "RecoModule.hh"
6
7ClassImp(RecoModule)
8
9// ctor
10RecoModule::RecoModule(const string& n) : EsafConfigurable(), EsafMsgSource() {
11    fName = n;
12    fData = new RecoModuleData( this );
13}
14
15// dtor
16RecoModule::~RecoModule() {
17    if ( fData )
18        delete fData;
19}
Note: See TracBrowser for help on using the repository browser.