AliRoot Core
edcc906 (edcc906)
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
AliFMDEdepHitPair.h
Go to the documentation of this file.
1
#ifndef ALIFMDEDEPHITPAIR_H
2
#define ALIFMDEDEPHITPAIR_H
3
/* Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights
4
* reserved.
5
*
6
* See cxx source for full Copyright notice
7
*/
14
//____________________________________________________________________
15
//
16
// Contains a pair of energy deposited fEdep and number of hits
17
// fN, fEdep is the summed energy deposition, and fN is the
18
// number of hits. The map contains one such object or each strip.
19
// It is used to cache the data in the digitization classes
20
// AliFMDBaseDigitizer and so on.
21
//
22
#ifndef ROOT_Rtypes
23
# include <Rtypes.h>
24
#endif
25
#ifndef ROOT_TArrayI
26
# include <TArrayI.h>
27
#endif
28
29
//____________________________________________________________________
36
class
AliFMDEdepHitPair
37
{
38
public
:
39
Float_t
fEdep
;
// summed energy deposition
40
UShort_t
fN
;
// Number of hits
41
UShort_t
fNPrim
;
// Number of primaries;
42
TArrayI
fLabels
;
// Track labels.
43
45
AliFMDEdepHitPair
() : fEdep(0), fN(0), fNPrim(0), fLabels(0) {}
47
virtual
~AliFMDEdepHitPair
() {}
51
AliFMDEdepHitPair
&
operator=
(
const
AliFMDEdepHitPair
& o)
52
{
53
if
(&o ==
this
)
return
*
this
;
54
fEdep = o.
fEdep
;
55
fN = o.
fN
;
56
fNPrim = o.
fNPrim
;
57
fLabels = o.
fLabels
;
58
return
*
this
;
59
}
62
AliFMDEdepHitPair
(
const
AliFMDEdepHitPair
& o)
63
: fEdep(o.fEdep), fN(o.fN), fNPrim(o.fNPrim), fLabels(o.fLabels)
64
{}
65
ClassDef(
AliFMDEdepHitPair
, 3)
66
};
67
68
#endif
69
//____________________________________________________________________
70
//
71
// Local Variables:
72
// mode: C++
73
// End:
74
//
75
// EOF
76
//
77
78
AliFMDEdepHitPair::fN
UShort_t fN
Definition:
AliFMDEdepHitPair.h:40
AliFMDEdepHitPair::operator=
AliFMDEdepHitPair & operator=(const AliFMDEdepHitPair &o)
Definition:
AliFMDEdepHitPair.h:51
AliFMDEdepHitPair::fNPrim
UShort_t fNPrim
Definition:
AliFMDEdepHitPair.h:41
AliFMDEdepHitPair::fLabels
TArrayI fLabels
Definition:
AliFMDEdepHitPair.h:42
AliFMDEdepHitPair::AliFMDEdepHitPair
AliFMDEdepHitPair(const AliFMDEdepHitPair &o)
Definition:
AliFMDEdepHitPair.h:62
AliFMDEdepHitPair::fEdep
Float_t fEdep
Definition:
AliFMDEdepHitPair.h:39
AliFMDEdepHitPair::AliFMDEdepHitPair
AliFMDEdepHitPair()
Definition:
AliFMDEdepHitPair.h:45
AliFMDEdepHitPair
Cache of Energy deposited, hit information per strip. Contains a pair of energy deposited fEdep and n...
Definition:
AliFMDEdepHitPair.h:36
AliFMDEdepHitPair::~AliFMDEdepHitPair
virtual ~AliFMDEdepHitPair()
Definition:
AliFMDEdepHitPair.h:47
FMD
FMDsim
AliFMDEdepHitPair.h
Generated on Wed May 2 2018 18:14:12 for AliRoot Core by
1.8.11