]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSRawClusterSSD.cxx
Default changed: geometry file (.det) is not read by default
[u/mrichter/AliRoot.git] / ITS / AliITSRawClusterSSD.cxx
CommitLineData
41b19549 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
24ClassImp(AliITSRawClusterSSD)
25
26//______________________________________________________________________
27AliITSRawClusterSSD::AliITSRawClusterSSD(){
28 // Default constructor
29 fMultiplicityN=0;
30 fQErr=0;
31 fSignalP=0;
32 fSignalN=0;
33 fStatus=-1;
34 fNtracks=0;
35}
36//______________________________________________________________________
37AliITSRawClusterSSD::AliITSRawClusterSSD(Float_t Prob,Int_t Sp,Int_t Sn) {
38 // constructor
39
40 Prob = 0.0; // added to remove unused variable warning.
41 //fProbability = Prob;
42 fMultiplicity = Sp;
43 fMultiplicityN = Sn;
44}