]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliITSRawStream.cxx
create a new AliEn directory per day (like for the physical files in CASTOR),
[u/mrichter/AliRoot.git] / RAW / AliITSRawStream.cxx
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 //
18 // This is a base class for reading ITS raw data files and providing
19 // information about digits
20 //
21 // Derived class should implement the Next method.
22 //
23 // It loops over all ITS digits in the raw data given by the AliRawReader.
24 // The Next method goes to the next digit. If there are no digits left
25 // it returns kFALSE.
26 // Several getters provide information about the current digit.
27 //
28 ///////////////////////////////////////////////////////////////////////////////
29
30 #include "AliITSRawStream.h"
31
32 ClassImp(AliITSRawStream)
33
34
35 AliITSRawStream::AliITSRawStream(AliRawReader* rawReader)
36 {
37 // create an object to read ITS raw digits
38
39   fRawReader = rawReader;
40   fModuleID = fPrevModuleID = fCoord1 = fCoord2 = fSignal = -1;
41 }
42
43 AliITSRawStream::AliITSRawStream(const AliITSRawStream& stream) :
44   TObject(stream)
45 {
46   Fatal("AliITSRawStream", "copy constructor not implemented");
47 }
48
49 AliITSRawStream& AliITSRawStream::operator = (const AliITSRawStream& 
50                                               /* stream */)
51 {
52   Fatal("operator =", "assignment operator not implemented");
53   return *this;
54 }
55