source: JEM-EUSO/esaf_cc_at_lal/packages/reconstruction/event/src/RecoShowerTrackData.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: 1.6 KB
Line 
1// $Id: RecoShowerTrackData.cc 2387 2005-11-23 16:02:40Z moreggia $
2// Author: Sylvain Moreggia   2005/11/16
3
4/*****************************************************************************
5 * ESAF: Euso Simulation and Analysis Framework                              *
6 *                                                                           *
7 *  Id: RecoShowerTrackData                                                           *
8 *  Package: <packagename>                                                   *
9 *  Coordinator: <coordinator>                                               *
10 *                                                                           *
11 *****************************************************************************/
12
13//_____________________________________________________________________________
14//
15// RecoShowerTrackData
16//
17// <extensive class description>
18//
19//   Config file parameters
20//   ======================
21//
22//   <parameter name>: <parameter description>
23//   -Valid options: <available options>
24//
25
26#include "RecoShowerTrackData.hh"
27#include "RecoShowerStepData.hh"
28
29ClassImp(RecoShowerTrackData)
30
31//_____________________________________________________________________________
32RecoShowerTrackData::RecoShowerTrackData() {
33    //
34    // Constructor
35    //
36
37}
38
39//_____________________________________________________________________________
40RecoShowerTrackData::~RecoShowerTrackData() {
41    //
42    // Destructor
43    //
44   
45    RecoShowerStepData* data = 0;
46    for(UInt_t i=0; i<fSteps.size(); i++) {
47        data = fSteps[i];
48        SafeDelete(data);
49    }
50    fSteps.clear();
51}
52
Note: See TracBrowser for help on using the repository browser.