]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSBadChannelsSSDv2.cxx
clusterizer,reconstructor + many fixes (Magnus,Stefan)
[u/mrichter/AliRoot.git] / ITS / AliITSBadChannelsSSDv2.cxx
CommitLineData
88128115 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
17#include "AliITSBadChannelsSSDv2.h"
18#include <cstring>
19
20//////////////////////////////////////////////////////
21// Author: Enrico Fragiacomo
22// Date: 23/08/2007
23// Modified: 08/07/2008
24// //
25//////////////////////////////////////////////////////
26
27//const Int_t AliITSBadChannelsSSD::fgkDefaultNModulesSSD = 1698;
28//const Int_t AliITSBadChannelsSSD::fgkDefaultNStripsSSD = 768;
29
30ClassImp(AliITSBadChannelsSSDv2)
31
32//______________________________________________________________________
33 AliITSBadChannelsSSDv2::AliITSBadChannelsSSDv2()
34 // Default Constructor
35{
36 for(Int_t i=0; i<2*fgkDefaultNModulesSSD*fgkDefaultNStripsSSD; i++)
37 fBadChannels[i]=0;
38 }
39
40//______________________________________________________________________
41AliITSBadChannelsSSDv2::AliITSBadChannelsSSDv2(const AliITSBadChannelsSSDv2 &source):
42 TObject(source)
43{
44 // copy Constructor
45 memcpy(fBadChannels,source.fBadChannels,
46 2*fgkDefaultNModulesSSD*fgkDefaultNStripsSSD*sizeof(Char_t));
47}
48
49//______________________________________________________________________
50AliITSBadChannelsSSDv2::~AliITSBadChannelsSSDv2(){
51 // destructor
52}
53
54//______________________________________________________________________
55AliITSBadChannelsSSDv2& AliITSBadChannelsSSDv2::operator=(const AliITSBadChannelsSSDv2 &source) {
56 // ass. op.
57 if (this == &source)return *this;
b99cb574 58 TObject::operator=(source);
88128115 59 memcpy(fBadChannels,source.fBadChannels,
60 2*fgkDefaultNModulesSSD*fgkDefaultNStripsSSD*sizeof(Char_t));
61
62 return *this;
63}