git://git.uio.no
/
u/mrichter/AliRoot.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
Introducing Copyright include file
[u/mrichter/AliRoot.git]
/
STEER
/
AliDigit.cxx
Commit
Line
Data
fe4da5cc
1
#include "AliDigit.h"
fe4da5cc
2
3
ClassImp(AliDigit)
4
5
AliDigit::AliDigit()
6
{
7
}
8
9
AliDigit::AliDigit(Int_t *tracks)
10
{
11
fTracks[0] = tracks[0];
12
fTracks[1] = tracks[1];
13
fTracks[2] = tracks[2];
14
}
15
16