source: JEM-EUSO/esaf_lal/tags/v1_r0/esaf/packages/reconstruction/event/src/RecoPhotoElectronData.cc @ 117

Last change on this file since 117 was 117, checked in by moretto, 11 years ago

ESAF version compilable on mac OS

File size: 624 bytes
Line 
1// ESAF : Euso Simulation and Analysis Framework
2// $Id: RecoPhotoElectronData.cc 788 2004-06-17 08:20:12Z thea $
3// R. Pesce created Jan, 16 2004
4
5#include "RecoPhotoElectronData.hh"
6
7ClassImp(RecoPhotoElectronData)
8
9// ctor
10RecoPhotoElectronData::RecoPhotoElectronData(Int_t fe, Int_t fech, Int_t gtu, Int_t cell, Bool_t fastor, 
11    Int_t xc, Int_t yc, Float_t xpos, Float_t ypos)  {
12   
13    fFe = fe;
14    fFeCh = fech;
15    fGtu = gtu;
16    fMacroCell = cell;
17    fMadeFastOR = fastor;
18    fXCell = xc;
19    fYCell = yc;
20    fXPos = xpos;
21    fYPos = ypos;
22}
23
24// dtor
25RecoPhotoElectronData::~RecoPhotoElectronData() {
26}
27
28
Note: See TracBrowser for help on using the repository browser.