]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALRawStream.cxx
Possibility to switch off heavy flavor production added.
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALRawStream.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 /* $Id$ */
17
18 ///////////////////////////////////////////////////////////////////////////////
19 ///
20 /// This class provides access to EMCAL digits in raw data.
21 ///
22 /// It loops over all EMCAL digits in the raw data given by the AliRawReader.
23 /// The Next method goes to the next digit. If there are no digits left
24 /// it returns kFALSE.
25 /// Several getters provide information about the current digit.
26 /// usage: 
27 /// root > AliRawReaderFile rawReader(#event) ; 
28 /// root > AliPHOSRawStream input(&rawReader) ; 
29 /// root > while (input.Next()) ..... 
30 ///
31 ///////////////////////////////////////////////////////////////////////////////
32
33 #include "AliEMCALRawStream.h"
34 #include "AliRawReader.h"
35
36 ClassImp(AliEMCALRawStream)
37
38
39 //_____________________________________________________________________________
40 AliEMCALRawStream::AliEMCALRawStream(AliRawReader* rawReader) :
41   AliAltroRawStream(rawReader)
42 {
43 // create an object to read EMCAL raw digits
44
45   fRawReader->Select(8);
46 }