]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSRawClusterSSD.cxx
Protection against special particle types.
[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//______________________________________________________________________
a8d73343 27AliITSRawClusterSSD::AliITSRawClusterSSD():
28fMultiplicityN(0),
29fQErr(0),
30fSignalP(0),
31fSignalN(0),
32fStatus(-1),
33fNtracks(0)
34{
41b19549 35 // Default constructor
41b19549 36}
37//______________________________________________________________________
a8d73343 38AliITSRawClusterSSD::AliITSRawClusterSSD(Float_t Prob,Int_t Sp,Int_t Sn):
39fMultiplicityN(Sn),
40fQErr(0),
41fSignalP(0),
42fSignalN(0),
43fStatus(-1),
44fNtracks(0) {
41b19549 45 // constructor
46
47 Prob = 0.0; // added to remove unused variable warning.
48 //fProbability = Prob;
49 fMultiplicity = Sp;
41b19549 50}