]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSOnlineSDD.cxx
Additional protection needed by AliRawReaderMemory (Henrik)
[u/mrichter/AliRoot.git] / ITS / AliITSOnlineSDD.cxx
CommitLineData
348f80b7 1/**************************************************************************
2 * Copyright(c) 2007-2009, 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// //
18// Implementation of the base class for SDD detector algorithms //
19// Origin: F.Prino, Torino, prino@to.infn.it //
20// //
21///////////////////////////////////////////////////////////////////
22
23#include "AliITSOnlineSDD.h"
24
25ClassImp(AliITSOnlineSDD)
26//______________________________________________________________________
979b5a5f 27 AliITSOnlineSDD::AliITSOnlineSDD():TObject(),fDDL(0),fCarlos(0),fSide(0),fFirstGoodTB(0),fLastGoodTB(0)
348f80b7 28{
29 // default constructor
750296dd 30 SetFirstGoodTB();
31 SetLastGoodTB();
348f80b7 32}
33//______________________________________________________________________
979b5a5f 34 AliITSOnlineSDD::AliITSOnlineSDD(Int_t nddl, Int_t ncarlos, Int_t sid):TObject(),fDDL(0),fCarlos(0),fSide(0),fFirstGoodTB(0),fLastGoodTB(0)
348f80b7 35{
36 // standard constructor
979b5a5f 37 SetDDL(nddl);
38 SetCarlos(ncarlos);
348f80b7 39 SetDetectorSide(sid);
750296dd 40 SetFirstGoodTB();
41 SetLastGoodTB();
348f80b7 42}