source: JEM-EUSO/esaf_cc_at_lal/packages/simulation/lightsources/include/EAtmosphereBunchAdder.hh @ 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: 911 bytes
Line 
1// ESAF : Euso Simulation and Analysis Framework
2// $Id: EAtmosphereBunchAdder.hh 1007 2004-09-14 12:10:44Z moreggia $
3// Author: Anne Stutz   Jul, 27 2004
4
5#ifndef __EATMOSPHEREBUNCHADDER_HH_
6#define __EATMOSPHEREBUNCHADDER_HH_
7
8#include "euso.hh"
9#include "EFiller.hh"
10
11/*******************************************************************************
12 *
13 * EAtmosphereBunchAdder: class description
14 *
15 ******************************************************************************/
16class BunchOfPhotons;
17
18class EAtmosphereBunchAdder : public EFiller {
19public:
20    //ctor
21    EAtmosphereBunchAdder(const BunchOfPhotons*, Bool_t newb = false);
22
23    //dtor
24    virtual ~EAtmosphereBunchAdder();
25
26    // fill the root file
27    virtual void Fill( EFillable* );
28
29private:
30    const BunchOfPhotons *fBunch; 
31    Bool_t fNewBunch;
32
33    ClassDef(EAtmosphereBunchAdder,0)
34};
35
36#endif  /* __EATMOSPHEREBUNCHADDER_HH_ */
37
Note: See TracBrowser for help on using the repository browser.