source: JEM-EUSO/esaf_cc_at_lal/packages/common/atmosphere/src/Aerosol.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.4 KB
Line 
1// $Id: Aerosol.cc 2676 2006-04-28 15:22:49Z moreggia $
2// Author: Sylvain Moreggia   2006/04/24
3
4/*****************************************************************************
5 * ESAF: Euso Simulation and Analysis Framework                              *
6 *                                                                           *
7 *  Id: Aerosol                                                           *
8 *  Package: <packagename>                                                   *
9 *  Coordinator: <coordinator>                                               *
10 *                                                                           *
11 *****************************************************************************/
12
13//_____________________________________________________________________________
14//
15// Aerosol
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 "Aerosol.hh"
27
28ClassImp(Aerosol)
29
30//_____________________________________________________________________________
31Aerosol::Aerosol(string name) : EsafConfigurable(), EsafMsgSource() {
32    //
33    // Constructor
34    //
35   
36    fName = name;
37
38}
39
40//_____________________________________________________________________________
41Aerosol::~Aerosol() {
42    //
43    // Destructor
44    //
45}
46
Note: See TracBrowser for help on using the repository browser.