source: JEM-EUSO/esaf_cc_at_lal/packages/simulation/radiativetransfer/include/EmptyPhotonsOnPupil.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: 1.7 KB
Line 
1// $Id: EmptyPhotonsOnPupil.hh 2604 2006-03-20 21:51:35Z thea $
2// Author: Sylvain Moreggia   2005/11/14
3
4/*****************************************************************************
5 * ESAF: Euso Simulation and Analysis Framework                              *
6 *                                                                           *
7 *  Id: EmptyPhotonsOnPupil                                                  *
8 *  Package: <packagename>                                                   *
9 *  Coordinator: <coordinator>                                               *
10 *                                                                           *
11 *****************************************************************************/
12
13#ifndef __EMPTYPHOTONSONPUPIL_HH__
14#define __EMPTYPHOTONSONPUPIL_HH__
15
16#include "euso.hh"
17#include "PhotonsOnPupil.hh"
18
19////////////////////////////////////////////////////////////////////////////////
20//                                                                            //
21// EmptyPhotonsOnPupil                                                        //
22//                                                                            // 
23// <brief class description>                                                  // 
24//                                                                            // 
25////////////////////////////////////////////////////////////////////////////////
26
27class EmptyPhotonsOnPupil : public PhotonsOnPupil {
28public:
29    EmptyPhotonsOnPupil();
30    virtual ~EmptyPhotonsOnPupil();
31   
32    virtual Photon* GetPhoton() {return (Photon*)0;}
33
34    virtual void Clear() {}
35
36    virtual Bool_t ClearMemory() { return kTRUE;}
37
38private:
39
40    ClassDef(EmptyPhotonsOnPupil,0)
41};
42
43#endif  /* __EMPTYPHOTONSONPUPIL_HH__ */
44
Note: See TracBrowser for help on using the repository browser.