]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONPedestalSubprocessor.cxx
Do not fail if the corresponding pedestal run was obviously bad, i.e. if the number...
[u/mrichter/AliRoot.git] / MUON / AliMUONPedestalSubprocessor.cxx
CommitLineData
ea199e33 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
8d8e920c 18#include "AliMUONPedestalSubprocessor.h"
ea199e33 19
20#include "AliCDBMetaData.h"
042cd64e 21#include "AliCDBEntry.h"
ceecdad2 22#include "AliDAQ.h"
ea199e33 23#include "AliLog.h"
24#include "AliMUON2DMap.h"
8d8e920c 25#include "AliMUON2DStoreValidator.h"
a8f77ca0 26#include "AliMUONCalibParamNF.h"
ea199e33 27#include "AliMUONPreprocessor.h"
81028269 28#include "AliMUONTrackerIO.h"
8d8e920c 29#include "AliMpConstants.h"
7ca4655f 30#include "AliMpDDLStore.h"
a8f77ca0 31#include "TObjString.h"
8d8e920c 32#include <Riostream.h>
33#include <TList.h>
34#include <TObjString.h>
35#include <TSystem.h>
36#include <sstream>
ea199e33 37
3d1463c8 38//-----------------------------------------------------------------------------
ea199e33 39/// \class AliMUONPedestalSubprocessor
40///
41/// Implementation of AliMUONVSubprocessor class to deal with MUON TRK pedestals.
42///
43/// Pedestals are read in from an ascii file, with the format : \n
44///---------------------------------------------------------------------------\n
45/// BUS_PATCH MANU_ADDR CHANNEL MEAN SIGMA \n
46///---------------------------------------------------------------------------\n
47///
48/// \author L. Aphecetche
3d1463c8 49//-----------------------------------------------------------------------------
ea199e33 50
51/// \cond CLASSIMP
52ClassImp(AliMUONPedestalSubprocessor)
53/// \endcond
54
55//_____________________________________________________________________________
56AliMUONPedestalSubprocessor::AliMUONPedestalSubprocessor(AliMUONPreprocessor* master)
57: AliMUONVSubprocessor(master,
58 "Pedestals",
59 "Upload MUON Tracker pedestals to OCDB"),
6c870207 60fPedestals(0x0),
61fConfig(0x0),
62fConfigChanged(kFALSE)
ea199e33 63{
71a2d3aa 64 /// default ctor
ea199e33 65}
66
67//_____________________________________________________________________________
68AliMUONPedestalSubprocessor::~AliMUONPedestalSubprocessor()
69{
71a2d3aa 70 /// dtor
ea199e33 71 delete fPedestals;
6c870207 72 delete fConfig;
ea199e33 73}
74
042cd64e 75//_____________________________________________________________________________
76Bool_t
77AliMUONPedestalSubprocessor::HasConfigChanged(const AliMUONVStore& newConfig) const
78{
79 /// Check whether the config changed.
80 /// Any error will return kTRUE to trig a config upload (safer way).
81
82 AliCDBEntry* entry = Master()->GetFromOCDB("Calib","Config");
83 if (!entry)
84 {
85 AliError("Could not get MUON/Calib/Config entry for current run ! That's not OK !");
86 return kTRUE;
87 }
88 AliMUONVStore* oldConfig = dynamic_cast<AliMUONVStore*>(entry->GetObject());
89 if (!oldConfig)
90 {
91 AliError("Could not get MUON/Calib/Config object for current run (wrong type ?) ! That's not OK !");
92 return kTRUE;
93 }
94
95 if ( oldConfig->GetSize() != newConfig.GetSize() )
96 {
97 return kTRUE;
98 }
99
100 TIter next(oldConfig->CreateIterator());
101 AliMUONVCalibParam* old;
102
103 while ( ( old = static_cast<AliMUONVCalibParam*>(next()) ) )
104 {
105 Int_t detElemId = old->ID0();
106 Int_t manuId = old->ID1();
107
108 if ( ! newConfig.FindObject(detElemId,manuId) )
109 {
110 // not found in new. Configurations are different. Return right now.
111 return kTRUE;
112 }
113 }
114
115 // all tests OK. Configuration has not changed.
116 return kFALSE;
117}
118
119
ea199e33 120//_____________________________________________________________________________
6c870207 121Bool_t
ea199e33 122AliMUONPedestalSubprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTime)
123{
124 /// When starting a new run, reads in the pedestals ASCII files.
125
126 const Int_t kSystem = AliMUONPreprocessor::kDAQ;
127 const char* kId = "PEDESTALS";
128
129 delete fPedestals;
130 fPedestals = new AliMUON2DMap(kTRUE);
131
6c870207 132 delete fConfig;
133 fConfig = new AliMUON2DMap(kTRUE);
134
d2db856e 135 Master()->Log(Form("Reading pedestal files for Run %d startTime %ld endTime %ld",
136 run,startTime,endTime));
ea199e33 137
138 TList* sources = Master()->GetFileSources(kSystem,kId);
139 TIter next(sources);
140 TObjString* o(0x0);
703d8257 141 Int_t n(0);
6c870207 142 Int_t npedFiles(0);
703d8257 143
ea199e33 144 while ( ( o = static_cast<TObjString*>(next()) ) )
145 {
146 TString fileName(Master()->GetFile(kSystem,kId,o->GetName()));
6c870207 147 Int_t ok = ReadPedestalFile(fileName.Data());
81028269 148 if (ok>0)
703d8257 149 {
150 n += ok;
6c870207 151 ++npedFiles;
703d8257 152 }
153 }
6c870207 154
155 delete sources;
703d8257 156
157 if (!n)
158 {
159 Master()->Log("Failed to read any pedestals");
82945276 160
703d8257 161 delete fPedestals;
162 fPedestals = 0;
6c870207 163 delete fConfig;
164 fConfig = 0;
82945276 165
166 // OK, we did not get our pedestals. Check if the ped run itself
167 // was bad, i.e. too few events
168 TString nevents(Master()->GetRunParameter("totalEvents"));
169
170 if ( nevents.Atoi() < 50 )
171 {
172 Master()->Log(Form("The run had only %d events, so the failure to read pedestals is normal",nevents.Atoi()));
173 // too few events, failure is normal, returns OK.
174 return kTRUE;
175 }
176
177 // no ped, but run looks clean, that's an error
6c870207 178 return kFALSE;
179 }
180
181 const char* kIdConf = "CONFIG";
182
183 sources = Master()->GetFileSources(kSystem,kIdConf);
184 TIter nextConf(sources);
185 Int_t nconf(0);
186 Int_t nconfFiles(0);
187
6c870207 188 while ( ( o = static_cast<TObjString*>(nextConf()) ) )
189 {
190 TString fileName(Master()->GetFile(kSystem,kIdConf,o->GetName()));
191 Int_t ok = ReadConfigFile(fileName.Data());
192 if (ok>0)
193 {
194 nconf += ok;
195 ++nconfFiles;
196 }
ea199e33 197 }
6c870207 198
ea199e33 199 delete sources;
6c870207 200
201 if ( npedFiles != nconfFiles )
202 {
203 Master()->Log(Form("ERROR : Number of config files (%d) different from number of pedestal files (%d)",nconfFiles,npedFiles));
204 delete fPedestals;
205 fPedestals = 0;
206 delete fConfig;
207 fConfig = 0;
208 return kFALSE;
209 }
210
042cd64e 211 fConfigChanged = HasConfigChanged(*fConfig);
ceecdad2 212
6c870207 213 return kTRUE;
ea199e33 214}
215
216//_____________________________________________________________________________
217UInt_t
218AliMUONPedestalSubprocessor::Process(TMap* /*dcsAliasMap*/)
219{
71a2d3aa 220 /// Store the pedestals into the CDB
ea199e33 221
6c870207 222 if (!fPedestals || !fConfig)
a8f77ca0 223 {
6c870207 224 // this is the only reason to fail for the moment : getting no pedestal or no config
a8f77ca0 225 // at all.
d489129d 226 return 1;
a8f77ca0 227 }
703d8257 228
a8f77ca0 229 AliMUON2DStoreValidator validator;
230
231 Master()->Log("Validating");
232
6c870207 233 TObjArray* chambers = validator.Validate(*fPedestals,fConfig);
a8f77ca0 234
235 if (chambers)
236 {
237 // we hereby report what's missing, but this is not a reason to fail ;-)
238 // the only reason to fail would be if we got no pedestal at all
239 TList lines;
240 lines.SetOwner(kTRUE);
241
242 validator.Report(lines,*chambers);
243
244 TIter next(&lines);
245 TObjString* line;
246
247 while ( ( line = static_cast<TObjString*>(next()) ) )
248 {
249 Master()->Log(line->String().Data());
250 }
251 }
252
6c870207 253 Master()->Log("Storing pedestals...");
254 if ( fConfigChanged )
255 {
256 Master()->Log("...and configuration, as it has changed");
257 }
ea199e33 258
259 AliCDBMetaData metaData;
260 metaData.SetBeamPeriod(0);
261 metaData.SetResponsible("MUON TRK");
d3231306 262 TString comment("Computed by AliMUONPedestalSubprocessor $Id$");
263 comment.ReplaceAll("$","");
264 metaData.SetComment(comment.Data());
ea199e33 265
3b32651c 266 Bool_t validToInfinity = kTRUE;
d489129d 267 Bool_t result = Master()->Store("Calib", "Pedestals", fPedestals, &metaData, 0, validToInfinity);
6c870207 268 if ( fConfigChanged )
269 {
270 result = result && Master()->Store("Calib", "Config", fConfig, &metaData, 0, validToInfinity);
271 }
d489129d 272 return ( result != kTRUE ); // return 0 if everything is ok.
ea199e33 273}
274
275//_____________________________________________________________________________
703d8257 276Int_t
6c870207 277AliMUONPedestalSubprocessor::ReadPedestalFile(const char* filename)
ea199e33 278{
71a2d3aa 279 /// Read the pedestals from an ASCII file. \n
280 /// Format of that file is one line per channel : \n
281 ///-------------------------------------------------------------------------\n
282 /// BUS_PATCH MANU_ADDR CHANNEL MEAN SIGMA \n
283 ///-------------------------------------------------------------------------\n
284 /// \n
285 /// Return kFALSE if reading was not successfull. \n
286 ///
ea199e33 287
d2db856e 288 TString sFilename(gSystem->ExpandPathName(filename));
ea199e33 289
d2db856e 290 Master()->Log(Form("Reading %s",sFilename.Data()));
ea199e33 291
81028269 292 Int_t n = AliMUONTrackerIO::ReadPedestals(sFilename.Data(),*fPedestals);
ea199e33 293
81028269 294 switch (n)
ea199e33 295 {
81028269 296 case -1:
297 Master()->Log(Form("Could not open %s",sFilename.Data()));
298 break;
ea199e33 299 }
2a7274d9 300
703d8257 301 return n;
ea199e33 302}
303
6c870207 304//_____________________________________________________________________________
305Int_t
306AliMUONPedestalSubprocessor::ReadConfigFile(const char* filename)
307{
308 /// Read the configuration from an ASCII file.
309 /// Format of that file is one line per manu :
310 /// BUS_PATCH MANU_ADDR
6c870207 311 /// Return kFALSE if reading was not successfull.
312 ///
313
314 TString sFilename(gSystem->ExpandPathName(filename));
315
316 Master()->Log(Form("Reading %s",sFilename.Data()));
317
042cd64e 318 Int_t n = AliMUONTrackerIO::ReadConfig(sFilename.Data(),*fConfig);
6c870207 319
320 switch (n)
321 {
322 case -1:
323 Master()->Log(Form("Could not open %s",sFilename.Data()));
324 break;
325 }
326
327 return n;
328}
329
ea199e33 330
331//_____________________________________________________________________________
332void
333AliMUONPedestalSubprocessor::Print(Option_t* opt) const
334{
335 /// ouput to screen
8d8e920c 336 if (fPedestals) fPedestals->Print("",opt);
6c870207 337 if (fConfig) fConfig->Print("",opt);
ea199e33 338}
6c870207 339