source: JEM-EUSO/esaf_cc_at_lal/packages/simulation/detector/optics/include/NOpticalSystem.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.9 KB
Line 
1// $Id: NOpticalSystem.hh 2784 2010-11-05 10:19:08Z biktem $
2// Author: Dmitry V.Naumov   2007/11/13
3
4/*****************************************************************************
5 * ESAF: Euso Simulation and Analysis Framework                              *
6 *                                                                           *
7 *  Id: NOpticalSystem                                                       *
8 *  Package: Optics                                                          *
9 *  Coordinator: Alessandro.Thea                                             *
10 *                                                                           *
11 *****************************************************************************/
12
13#ifndef __NOPTICALSYSTEM_HH__
14#define __NOPTICALSYSTEM_HH__
15
16#include "euso.hh"
17#include "OpticalSystem.hh"
18
19////////////////////////////////////////////////////////////////////////////////
20//                                                                            //
21// NOpticalSystem                                                             //
22//                                                                            //
23// <brief class description>                                                  //
24//                                                                            //
25////////////////////////////////////////////////////////////////////////////////
26
27
28class NOpticalSystem : public OpticalSystem{
29public:
30    NOpticalSystem();
31    virtual ~NOpticalSystem();
32    virtual Photon* Transport(Photon *p) const;
33    virtual Bool_t HitSide(Photon *p) const;
34
35    EsafConfigClass(Optics,NOpticalSystem)
36
37private:
38    // checks if a not 0 flag photon is going out
39    Bool_t IsGoingOut(Photon *p) const;
40                double fEffectiveEfficiencyFactor; 
41
42
43    //FILE*                        fLogFile;
44    ClassDef(NOpticalSystem,0)
45};
46
47#endif  /* __MOPTICALSYSTEM_HH__ */
Note: See TracBrowser for help on using the repository browser.