source: JEM-EUSO/esaf_cc_at_lal/packages/simulation/detector/optics/src/PolarFocalPlane.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.6 KB
Line 
1// $Id: PolarFocalPlane.cc 2136 2005-10-02 14:18:08Z thea $
2// Author: Alessandro Thea   2005/02/17
3
4/*****************************************************************************
5 * ESAF: Euso Simulation and Analysis Framework                              *
6 *                                                                           *
7 *  Id: PolarFocalPlane                                                      *
8 *  Package: <packagename>                                                   *
9 *  Coordinator: <coordinator>                                               *
10 *                                                                           *
11 *****************************************************************************/
12
13//_____________________________________________________________________________
14//
15// PolarFocalPlane
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 "PolarFocalPlane.hh"
27
28using namespace sou;
29
30ClassImp(PolarFocalPlane)
31
32//_____________________________________________________________________________
33PolarFocalPlane::PolarFocalPlane() {
34    //
35    // Constructor
36    //
37
38    fPos    = EVector(0,0,Conf()->GetNum("PolarFocalPlane.fPos.Z"))*mm;
39    fDZup   = 0;
40    fDZdown = Conf()->GetNum("PolarFocalPlane.fDZdown")*mm;
41    fR      = Conf()->GetNum("PolarFocalPlane.fRadius")*mm;
42}
43
44//_____________________________________________________________________________
45PolarFocalPlane::~PolarFocalPlane() {
46    //
47    // Destructor
48    //
49}
50
Note: See TracBrowser for help on using the repository browser.