icemc
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Friends
Macros
Pages
rx.hpp
Go to the documentation of this file.
1
2
// rx.hpp //
4
5
#ifndef RX_HPP
6
#define RX_HPP 1
7
8
// Standard Library #includes
9
#include <vector>
10
11
// ROOT Library #includes
12
#include "TObject.h"
13
#include "TCint.h"
14
15
class
RX
:
public
TObject {
16
public
:
17
unsigned
phi_sector
;
18
unsigned
layer
;
19
double
x
,
y
,
z
;
20
std::vector <double>*
waveform
;
21
std::vector <double>*
digitized
;
22
RX
(
void
) :
waveform
(NULL),
digitized
(NULL) {}
23
~RX
(
void
) {
delete
waveform
;
delete
digitized
;}
24
ClassDef
(
RX
, 1);
25
};
26
27
#endif
Generated on Sat Nov 15 2014 22:18:21 for icemc by
1.8.3.1