]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/MUON/src/Clustering/CenterOfGravityFinder.cxx
7d42a348bdecc23aa31c94aecaa41c4784550e1e
[u/mrichter/AliRoot.git] / HLT / MUON / src / Clustering / CenterOfGravityFinder.cxx
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // Author: Artur Szostak
4 // Email:  artur@alice.phy.uct.ac.za | artursz@iafrica.com
5 //
6 ////////////////////////////////////////////////////////////////////////////////
7
8 #include "Clustering/CenterOfGravityFinder.hpp"
9 #include "Error.hpp"
10
11 namespace dHLT
12 {
13 namespace Clustering
14 {
15
16
17 CenterOfGravityFinder::CenterOfGravityFinder() : ClusterFinder()
18 {
19         Diff_Y = 0.5; // 5000 micron slat size in Y
20         Diff_X = 1.0; // 10000 micron slat size in X
21         X = 56;
22         Y = 128;
23         DigitMax = 35; // maximum number of padhits in columns or rows.
24         DDLMax = 200; // Maximum number of padhits in one ddl;
25         DDLTot = 500; // totoal number of padhits in one ddl;
26 }
27
28
29 CenterOfGravityFinder::~CenterOfGravityFinder()
30 {
31         // TODO
32 }
33
34
35 void CenterOfGravityFinder::FindClusters(const ADCStream* stream)
36 {
37         // TODO
38 }
39
40
41 UInt CenterOfGravityFinder::FillClusterData(
42                 ClusterPoint* clusters, const UInt arraysize
43         )
44 {
45         // TODO
46         return 0;
47 }
48
49
50 void CenterOfGravityFinder::Reset() {
51             // TODO
52 }
53
54
55 } // Clustering
56 } // dHLT
57