source: JEM-EUSO/esaf_cc_at_lal/packages/common/root/src/EGeometry.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: EGeometry.cc 2372 2005-11-14 22:42:00Z thea $
2// Author: Alessandro Thea   2005/11/14
3
4/*****************************************************************************
5 * ESAF: Euso Simulation and Analysis Framework                              *
6 *                                                                           *
7 *  Id: EGeometry                                                              *
8 *  Package: <packagename>                                                   *
9 *  Coordinator: <coordinator>                                               *
10 *                                                                           *
11 *****************************************************************************/
12
13//_____________________________________________________________________________
14//
15// EGeometry
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 "EGeometry.hh"
27
28ClassImp(EGeometry)
29
30//_____________________________________________________________________________
31EGeometry::EGeometry() : fFoV(0), fRadius(0), fPosX(0), fPosY(0), fPosZ(0) {
32    //
33    // Constructor
34    //
35
36}
37
38//_____________________________________________________________________________
39EGeometry::~EGeometry() {
40    //
41    // Destructor
42    //
43}
44
45//______________________________________________________________________________
46void EGeometry::Clear( Option_t* opt ) {
47    //
48    // Reset the geometry
49    //
50
51    fFoV = 0;
52    fRadius = 0;
53
54    fPosX = 0;
55    fPosY = 0;
56    fPosZ = 0;
57
58    SetXEulerAngles(0.,0.,0.);
59}
Note: See TracBrowser for help on using the repository browser.