source: JEM-EUSO/esaf_cc_at_lal/packages/simulation/lightsources/src/NoLightSource.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.5 KB
Line 
1// $Id: NoLightSource.cc 2364 2005-11-14 11:24:52Z moreggia $
2// Author: Sylvain Moreggia   2005/11/10
3
4/*****************************************************************************
5 * ESAF: Euso Simulation and Analysis Framework                              *
6 *                                                                           *
7 *  Id: NoLightSource                                                           *
8 *  Package: <packagename>                                                   *
9 *  Coordinator: <coordinator>                                               *
10 *                                                                           *
11 *****************************************************************************/
12
13//_____________________________________________________________________________
14//
15// NoLightSource
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 "NoLightSource.hh"
27#include "EmptyPhotonsInAtmosphere.hh"
28
29ClassImp(NoLightSource)
30
31//_____________________________________________________________________________
32NoLightSource::NoLightSource() : LightSource("nolight") {
33    //
34    // Constructor
35    //
36    fEmpty = new EmptyPhotonsInAtmosphere();
37}
38
39//_____________________________________________________________________________
40NoLightSource::~NoLightSource() {
41    //
42    // Destructor
43    //
44    SafeDelete(fEmpty);
45}
46
Note: See TracBrowser for help on using the repository browser.