]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSRawClusterSSD.cxx
typo corrected
[u/mrichter/AliRoot.git] / ITS / AliITSRawClusterSSD.cxx
1 /**************************************************************************
2  * Copyright(c) 2000-2004, 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 #include "AliITSRawClusterSSD.h"
17
18 ////////////////////////////////////////////////////
19 //  Cluster classes for set:ITS                   //
20 //  Raw Clusters for SSD                          //
21 //                                                //
22 ////////////////////////////////////////////////////
23
24 ClassImp(AliITSRawClusterSSD)
25
26 //______________________________________________________________________
27 AliITSRawClusterSSD::AliITSRawClusterSSD():
28 fMultiplicityN(0),
29 fQErr(0),
30 fSignalP(0),
31 fSignalN(0),
32 fStatus(-1),
33 fNtracks(0)
34 {
35   // Default constructor
36 }
37 //______________________________________________________________________
38 AliITSRawClusterSSD::AliITSRawClusterSSD(Float_t Prob,Int_t Sp,Int_t Sn):
39 fMultiplicityN(Sn),
40 fQErr(0),
41 fSignalP(0),
42 fSignalN(0),
43 fStatus(-1),
44 fNtracks(0) {  
45     // constructor
46
47     Prob = 0.0; // added to remove unused variable warning.
48     //fProbability   = Prob;
49     fMultiplicity  = Sp;
50 }