]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliCaloRawStreamV3.cxx
Change weight tracklet histo for pPb
[u/mrichter/AliRoot.git] / RAW / AliCaloRawStreamV3.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 PHOS/EMCAL digits in raw data.
21 //
22 // It loops over all PHOS/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 //    AliRawReader *reader = AliRawReader::Create(fileName);
28 //    AliCaloRawStreamV3 *stream = new AliCaloRawStreamV3(reader,calo);
29 //    while (reader->NextEvent())
30 //      while (stream->NextDDL())
31 //        while (stream->NextChannel()) ...
32 ///
33 /// Yuri Kharlov. 23 June 2009
34 ///////////////////////////////////////////////////////////////////////////////
35
36 #include <TString.h>
37 #include <TSystem.h>
38
39 #include "AliLog.h"
40 #include "AliCaloRawStreamV3.h"
41 #include "AliRawReader.h"
42 #include "AliCaloAltroMapping.h"
43
44 ClassImp(AliCaloRawStreamV3)
45
46
47 //_____________________________________________________________________________
48 AliCaloRawStreamV3::AliCaloRawStreamV3(AliRawReader* rawReader, TString calo, AliAltroMapping **mapping) :
49   AliAltroRawStreamV3(rawReader),
50   fModule(-1),
51   fRow(-1),
52   fColumn(-1),
53   fCaloFlag(0),
54   fNModules(0),
55   fNRCU(0),
56   fNSides(0),
57   fCalo(calo),
58   fExternalMapping(kFALSE)
59 {
60   // create an object to read PHOS/EMCAL raw digits
61   SelectRawData(calo);
62
63   // PHOS and EMCAL have different number of RCU per module
64   //For PHOS (different mappings for different modules)
65   if(fCalo == "PHOS")  {
66     fNModules = 5;
67     fNRCU     = 4;
68     fNSides   = 1;
69   }
70   //For EMCAL (the same mapping for all modules)
71   if(fCalo == "EMCAL")  {
72     fNModules = 1;
73     fNRCU     = 2;
74     fNSides   = 2;
75   }
76   TString sides[]={"A","C"};
77
78   if (mapping == NULL) {
79     // Read mapping files from $ALICE_ROOT/CALO/mapping/*.data
80     TString path = gSystem->Getenv("ALICE_ROOT");
81     path += "/"+fCalo+"/mapping/";
82     TString path1, path2;
83     for(Int_t m = 0; m < fNModules; m++) {
84       path1 = path;
85       if     (fCalo == "EMCAL") {
86         path1 += "RCU";
87       }
88       else if(fCalo == "PHOS" ) {
89         path1 += "Mod";
90         path1 += m;
91         path1 += "RCU";
92       }
93       for(Int_t j = 0; j < fNSides; j++){
94         for(Int_t i = 0; i < fNRCU; i++) {
95           path2 = path1;
96           path2 += i;
97           if(fCalo == "EMCAL") path2 += sides[j];
98           path2 += ".data";
99           AliDebug(2,Form("Mapping file: %s",path2.Data()));
100           fMapping[m*fNSides*fNRCU + j*fNRCU + i] = new AliCaloAltroMapping(path2.Data());
101         }
102       }
103     }
104   }
105   else {
106     // Mapping is supplied by reconstruction
107     fExternalMapping = kTRUE;
108     for(Int_t i = 0; i < fNModules*fNRCU*fNSides; i++)
109       fMapping[i] = mapping[i];
110   }
111 }
112
113 //_____________________________________________________________________________
114 AliCaloRawStreamV3::AliCaloRawStreamV3(const AliCaloRawStreamV3& stream) :
115   AliAltroRawStreamV3(stream),
116   fModule(-1),
117   fRow(-1),
118   fColumn(-1),
119   fCaloFlag(0),
120   fNModules(0),
121   fNRCU(0),
122   fNSides(0),
123   fCalo(""),
124   fExternalMapping(kFALSE)
125 {  
126   // Dummy copy constructor
127   Fatal("AliCaloRawStreamV3", "copy constructor not implemented");
128 }
129
130 //_____________________________________________________________________________
131 AliCaloRawStreamV3& AliCaloRawStreamV3::operator = (const AliCaloRawStreamV3& 
132                                               /* stream */)
133 {
134   // Dummy assignment operator
135   Fatal("operator =", "assignment operator not implemented");
136   return *this;
137 }
138
139 //_____________________________________________________________________________
140 AliCaloRawStreamV3::~AliCaloRawStreamV3()
141 {
142 // destructor
143
144   if (!fExternalMapping)
145     for(Int_t i = 0; i < fNModules*fNRCU*fNSides; i++)
146       delete fMapping[i];
147 }
148
149 //_____________________________________________________________________________
150 void AliCaloRawStreamV3::Reset()
151 {
152   // reset PHOS/EMCAL raw stream params
153   AliAltroRawStreamV3::Reset();
154   fModule = fRow = fColumn = -1;
155   fCaloFlag = 0;
156   fCalo="";
157 }
158
159 //_____________________________________________________________________________
160 Bool_t AliCaloRawStreamV3::NextChannel()
161 {
162   // Read next PHOS/EMCAL signal
163   // Apply the PHOS/EMCAL altro mapping to get
164   // the module,row and column indeces
165
166   if (AliAltroRawStreamV3::NextChannel()) {
167     ApplyAltroMapping();
168     return kTRUE;
169   }
170   else
171     return kFALSE;
172 }
173
174 //_____________________________________________________________________________
175 void AliCaloRawStreamV3::ApplyAltroMapping()
176 {
177   // Take the DDL index, load
178   // the corresponding altro mapping
179   // object and fill the sector,row and pad indeces
180
181   Int_t ddlNumber = GetDDLNumber();
182   fModule = ddlNumber / fNRCU;
183
184   Int_t rcuIndex = ddlNumber % fNRCU;
185
186   if( fNModules > 1) rcuIndex += fModule*fNRCU*fNSides;
187   if( fNRCU == 2 ){ // EMCAL may need to increase RCU index for the maps
188     if (fModule%2 == 1) { rcuIndex += 2; } // other='C' side maps
189   }
190
191   Short_t hwAddress = GetHWAddress();
192   fRow      = fMapping[rcuIndex]->GetPadRow(hwAddress);
193   fColumn   = fMapping[rcuIndex]->GetPad(hwAddress);
194   fCaloFlag = fMapping[rcuIndex]->GetSector(hwAddress);
195 }