Line data Source code
1 : /**************************************************************************
2 : * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 : * *
4 : * Author: The ALICE Off-line Project. *
5 : * Contributors are mentioned in the code where appropriate. *
6 : * *
7 : * Permission to use, copy, modify and distribute this software and its *
8 : * documentation strictly for non-commercial purposes is hereby granted *
9 : * without fee, provided that the above copyright notice appears in all *
10 : * copies and that both the copyright notice and this permission notice *
11 : * appear in the supporting documentation. The authors make no claims *
12 : * about the suitability of this software for any purpose. It is *
13 : * provided "as is" without express or implied warranty. *
14 : **************************************************************************/
15 :
16 : // $Id$
17 :
18 : /// \class AliMUONVClusterServer
19 : ///
20 : /// Interface of a cluster finder for combined tracking
21 : ///
22 : /// The tracking, when in needs for clusters, will ask the cluster server
23 : /// to add clusters, from a given region in a given chamber, to an existing
24 : /// clusterstore, using the
25 : ///
26 : /// Clusterize(Int_t chamberId, AliMUONVClusterStore& clusterStore, const AliMpArea& area)
27 : ///
28 : /// method
29 : ///
30 : /// Cluster server must be instructed (at the beginning of each event)
31 : /// about which digits to use, using the
32 : ///
33 : /// UseDigitStore(const AliMUONVDigitStore& digitStore)
34 : ///
35 : /// method.
36 : ///
37 : /// \author Laurent Aphecetche, Subatech
38 :
39 : #include "AliMUONVClusterServer.h"
40 :
41 : /// \cond CLASSIMP
42 18 : ClassImp(AliMUONVClusterServer)
43 : /// \endcond
44 :
45 : //_____________________________________________________________________________
46 4 : AliMUONVClusterServer::AliMUONVClusterServer()
47 12 : {
48 : /// ctor
49 4 : }
50 :
51 : //_____________________________________________________________________________
52 : AliMUONVClusterServer::~AliMUONVClusterServer()
53 0 : {
54 : /// dtor
55 8 : }
|