]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONReconstructor.cxx
Run0_9999999_v0_s1.root
[u/mrichter/AliRoot.git] / MUON / AliMUONReconstructor.cxx
CommitLineData
cac2eb58 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 **************************************************************************/
cac2eb58 15/* $Id$ */
16
3d1463c8 17//-----------------------------------------------------------------------------
22899106 18/// \class AliMUONReconstructor
19///
20/// Implementation of AliReconstructor for MUON subsystem.
21///
96ebe67e 22/// The clustering mode and the associated parameters can be changed by using
23/// AliMUONRecoParam *muonRecoParam = AliMUONRecoParam::GetLow(High)FluxParam();
24/// muonRecoParam->Set...(); // see methods in AliMUONRecoParam.h for details
15d30ed4 25/// AliRecoParam::Instance()->RegisterRecoParam(muonRecoParam);
22899106 26///
96ebe67e 27/// Valid modes are :
22899106 28///
29/// SIMPLEFIT : use the AliMUONClusterFinderSimpleFit clusterizer
30///
96ebe67e 31/// SIMPLEFITV3 : SIMPLEFIT with preclustering=PRECLUSTERV3
32///
33/// MLEM : use AliMUONClusterFinderMLEM and AliMUONPreClusterFinder for preclustering (default)
34/// MLEMV2 : MLEM with preclustering=PRECLUSTERV2
93d7b017 35/// MLEMV3 : MLEM with preclustering=PRECLUSTERV3
36///
22899106 37/// PRECLUSTER : use only AliMUONPreClusterFinder. Only for debug as
38/// the produced clusters do not have a position, hence the tracking will not
39/// work
93d7b017 40/// PRECLUSTERV2 : another version of the preclustering
41/// PRECLUSTERV3 : yet another version of the preclustering
22899106 42///
43/// COG : use AliMUONClusterFinderCOG clusterizer. Not really a production
44/// option either, as center-of-gravity is generally not a good estimate
45/// of the cluster position...
46///
47/// NOCLUSTERING : bypass completely the clustering stage
48///
96ebe67e 49/// ------
22899106 50///
96ebe67e 51/// The behavior of the MUON reconstruction can also be changed, besides
52/// the usual methods found in AliReconstruction (e.g. to disable tracking)
53/// by using AliReconstruction::SetOption("MUON",options)
54/// where options should be a space separated string.
55///
56/// Valid options are :
57///
58/// SAVEDIGITS : if you want to save in the TreeD the *calibrated* digits
59/// that are used for the clustering
22899106 60///
93d7b017 61/// DIGITSTOREV1 : use the V1 implementation of the digitstore
62/// DIGITSTOREV2R : use the V2R implementation of the digitstore
63///
96ebe67e 64/// NOLOCALRECONSTRUCTION : for debug, to disable local reconstruction (and hence
65/// "recover" old behavior)
66///
67/// TRIGGERDISABLE : disable the treatment of MUON trigger
68///
e3a2b9c9 69/// USEFASTDECODER : makes the digit maker class use the high performance decoder
70/// AliMUONTrackerDDLDecoder instead of AliMUONPayloadTracker.
71///
22899106 72/// \author Laurent Aphecetche, Subatech
3d1463c8 73//-----------------------------------------------------------------------------
30178c30 74
cf464691 75#include "AliMUONReconstructor.h"
b2d7df0b 76
b2d7df0b 77#include "AliMUONCalibrationData.h"
22899106 78#include "AliMUONClusterFinderCOG.h"
79#include "AliMUONClusterFinderMLEM.h"
80#include "AliMUONClusterFinderSimpleFit.h"
22899106 81#include "AliMUONConstants.h"
b2d7df0b 82#include "AliMUONDigitCalibrator.h"
2cf44ef3 83#include "AliMUONDigitMaker.h"
22899106 84#include "AliMUONDigitStoreV1.h"
93d7b017 85#include "AliMUONDigitStoreV2R.h"
22899106 86#include "AliMUONGeometryTransformer.h"
87#include "AliMUONPreClusterFinder.h"
93d7b017 88#include "AliMUONPreClusterFinderV2.h"
89#include "AliMUONPreClusterFinderV3.h"
c5ce806f 90#include "AliMUONRecoParam.h"
91#include "AliMUONSimpleClusterServer.h"
196471e9 92#include "AliMUONTracker.h"
8c0b5e70 93#include "AliMUONTriggerChamberEff.h"
e1a10d41 94#include "AliMUONTriggerCircuit.h"
96fdfe9a 95#include "AliMUONTriggerCrateStore.h"
22899106 96#include "AliMUONTriggerStoreV1.h"
97#include "AliMUONVClusterFinder.h"
c5ce806f 98#include "AliMUONVClusterServer.h"
99#include "AliMUONVTrackStore.h"
100
101#include "AliMpArea.h"
88544f7e 102#include "AliMpCDB.h"
c5ce806f 103#include "AliMpConstants.h"
104
15d30ed4 105#include "AliRecoParam.h"
cf464691 106#include "AliRawReader.h"
c5ce806f 107#include "AliCDBManager.h"
93d7b017 108#include "AliCodeTimer.h"
c5ce806f 109#include "AliLog.h"
110
22899106 111#include <Riostream.h>
15d30ed4 112#include <TObjArray.h>
22899106 113#include <TClonesArray.h>
114#include <TString.h>
115#include <TTree.h>
2060b217 116
9265505b 117/// \cond CLASSIMP
cac2eb58 118ClassImp(AliMUONReconstructor)
22899106 119/// \endcond
b2d7df0b 120
3304fa09 121AliMUONRecoParam* AliMUONReconstructor::fgRecoParam = 0x0; // reconstruction parameters
122
cac2eb58 123//_____________________________________________________________________________
22899106 124AliMUONReconstructor::AliMUONReconstructor() :
125AliReconstructor(),
126fCrateManager(0x0),
127fDigitMaker(0x0),
ef4cb4f1 128fTransformer(new AliMUONGeometryTransformer()),
22899106 129fDigitStore(0x0),
130fTriggerCircuit(0x0),
131fCalibrationData(0x0),
132fDigitCalibrator(0x0),
c5ce806f 133fClusterServer(0x0),
22899106 134fTriggerStore(0x0),
135fTrackStore(0x0),
93d7b017 136fTrigChamberEff(0x0)
8789635b 137{
22899106 138 /// normal ctor
88544f7e 139
88544f7e 140 // Load mapping
a55f49a0 141 if ( ! AliMpCDB::LoadDDLStore() ) {
88544f7e 142 AliFatal("Could not access mapping from OCDB !");
143 }
144
a55f49a0 145 // Load geometry data
146 fTransformer->LoadGeometryData();
88544f7e 147
22899106 148}
d19b6003 149
22899106 150//_____________________________________________________________________________
151AliMUONReconstructor::~AliMUONReconstructor()
152{
153 /// dtor
154 delete fDigitMaker;
155 delete fDigitStore;
156 delete fTransformer;
157 delete fCrateManager;
158 delete fTriggerCircuit;
159 delete fCalibrationData;
160 delete fDigitCalibrator;
c5ce806f 161 delete fClusterServer;
22899106 162 delete fTriggerStore;
163 delete fTrackStore;
8c0b5e70 164 delete fTrigChamberEff;
22899106 165}
96fdfe9a 166
3304fa09 167//_____________________________________________________________________________
15d30ed4 168const AliMUONRecoParam* AliMUONReconstructor::GetRecoParam()
3304fa09 169{
15d30ed4 170 /// get reconstruction parameters
3304fa09 171
15d30ed4 172 if (!fgRecoParam) {
173
174 // get reconstruction parameters from AliRecoParam if any
175 TObjArray *recoParams = AliRecoParam::Instance()->GetRecoParam("MUON");
176
177 if (recoParams) {
178
179 fgRecoParam = (AliMUONRecoParam*) recoParams->Last();
180
181 } else {
182
183 // initialize reconstruction parameters if not already done
184 cout<<"W-AliMUONReconstructor::GetRecoParam: Reconstruction parameters not initialized - Use default one"<<endl;
185 fgRecoParam = AliMUONRecoParam::GetLowFluxParam();
186 AliRecoParam::Instance()->RegisterRecoParam(fgRecoParam);
187
188 }
189
3304fa09 190 }
191
15d30ed4 192 return fgRecoParam;
3304fa09 193}
194
22899106 195//_____________________________________________________________________________
196void
197AliMUONReconstructor::Calibrate(AliMUONVDigitStore& digitStore) const
198{
199 /// Calibrate the digitStore
200 if (!fDigitCalibrator)
201 {
202 CreateCalibrator();
203 }
93d7b017 204 AliCodeTimerAuto(Form("%s::Calibrate(AliMUONVDigitStore*)",fDigitCalibrator->ClassName()))
22899106 205 fDigitCalibrator->Calibrate(digitStore);
206}
96fdfe9a 207
22899106 208//_____________________________________________________________________________
209void
210AliMUONReconstructor::ConvertDigits(AliRawReader* rawReader,
211 AliMUONVDigitStore* digitStore,
212 AliMUONVTriggerStore* triggerStore) const
213{
214 /// Convert raw data into digit and trigger stores
215 CreateDigitMaker();
93d7b017 216
217 AliCodeTimerStart(Form("%s::Raw2Digits(AliRawReader*,AliMUONVDigitStore*,AliMUONVTriggerStore*)",
218 fDigitMaker->ClassName()))
22899106 219 fDigitMaker->Raw2Digits(rawReader,digitStore,triggerStore);
93d7b017 220 AliCodeTimerStop(Form("%s::Raw2Digits(AliRawReader*,AliMUONVDigitStore*,AliMUONVTriggerStore*)",
221 fDigitMaker->ClassName()))
22899106 222 Calibrate(*digitStore);
cac2eb58 223}
b2d7df0b 224
225//_____________________________________________________________________________
22899106 226void
227AliMUONReconstructor::ConvertDigits(AliRawReader* rawReader, TTree* digitsTree) const
b2d7df0b 228{
22899106 229 /// convert raw data into a digit tree
2060b217 230 AliCodeTimerAuto("")
22899106 231
232 Bool_t alone = ( TriggerStore() == 0 );
b2d7df0b 233
22899106 234 Bool_t ok = DigitStore()->Connect(*digitsTree,alone);
235 if ( TriggerStore() )
b476b122 236 {
22899106 237 ok = ok && TriggerStore()->Connect(*digitsTree,kFALSE);
b476b122 238 }
ee103e97 239
22899106 240 if (!ok)
241 {
242 AliError("Could not make branches on TreeD");
243 }
244 else
245 {
246 ConvertDigits(rawReader,DigitStore(),TriggerStore());
2060b217 247 AliCodeTimerStart("Fill digits")
22899106 248 digitsTree->Fill();
2060b217 249 AliCodeTimerStop("Fill digits")
22899106 250 DigitStore()->Clear();
251 }
252}
253
254//_____________________________________________________________________________
255AliMUONTriggerCrateStore*
256AliMUONReconstructor::CrateManager() const
257{
258 /// Return (and create if necessary) the trigger crate store
259 if (fCrateManager) return fCrateManager;
260 fCrateManager = new AliMUONTriggerCrateStore;
261 fCrateManager->ReadFromFile();
262 return fCrateManager;
263}
264
265//_____________________________________________________________________________
266void
267AliMUONReconstructor::CreateDigitMaker() const
268{
269 /// Create (and create if necessary) the digit maker
270 if (fDigitMaker) return;
271
93d7b017 272 AliCodeTimerAuto("")
22899106 273
e3a2b9c9 274 TString option = GetOption();
275 Bool_t enableErrorLogging = kTRUE;
276 Bool_t useFastDecoder = kFALSE;
e3ce3989 277 if (option.Contains("USEFASTDECODER"))
e3a2b9c9 278 {
279 useFastDecoder = kTRUE;
280 }
281 fDigitMaker = new AliMUONDigitMaker(enableErrorLogging, useFastDecoder);
22899106 282}
283
284//_____________________________________________________________________________
285void
286AliMUONReconstructor::CreateTriggerCircuit() const
287{
288 /// Return (and create if necessary) the trigger circuit object
289 if (fTriggerCircuit) return;
290
93d7b017 291 AliCodeTimerAuto("")
22899106 292
32ab62c9 293 fTriggerCircuit = new AliMUONTriggerCircuit(fTransformer);
22899106 294
32ab62c9 295}
8c0b5e70 296
297//_____________________________________________________________________________
298void
299AliMUONReconstructor::CreateTriggerChamberEff() const
300{
301 /// Create (and create if necessary) the trigger chamber efficiency class
302 if (fTrigChamberEff) return;
303
93d7b017 304 AliCodeTimerAuto("")
8c0b5e70 305
306 fTrigChamberEff = new AliMUONTriggerChamberEff(fTransformer,fDigitMaker,kTRUE);
307 //fTrigChamberEff->SetDebugLevel(1);
308}
309
22899106 310//_____________________________________________________________________________
311AliTracker*
d76c31f4 312AliMUONReconstructor::CreateTracker() const
22899106 313{
314 /// Create the MUONTracker object
ee103e97 315
22899106 316 CreateTriggerCircuit();
317 CreateDigitMaker();
8c0b5e70 318 CreateTriggerChamberEff();
c5ce806f 319 CreateClusterServer();
320
321 if (!fClusterServer)
322 {
323 AliError("ClusterServer is NULL ! Cannot create tracker");
324 return 0x0;
325 }
22899106 326
c5ce806f 327 fClusterServer->UseDigitStore(*(DigitStore()));
328
329 AliMUONTracker* tracker = new AliMUONTracker(*fClusterServer,
330 fDigitMaker,
331 fTransformer,
332 fTriggerCircuit,
333 fTrigChamberEff);
22899106 334
335 return tracker;
b2d7df0b 336}
337
f9247068 338//_____________________________________________________________________________
c5ce806f 339AliMUONVClusterFinder*
340AliMUONReconstructor::CreateClusterFinder(const char* clusterFinderType) const
f9247068 341{
c5ce806f 342 /// Create a given cluster finder instance
22899106 343
93d7b017 344 AliCodeTimerAuto("")
06ca6d7b 345
f9247068 346 AliMUONVClusterFinder* clusterFinder(0x0);
347
c5ce806f 348 TString opt(clusterFinderType);
f9247068 349 opt.ToUpper();
350
93d7b017 351 if ( strstr(opt,"PRECLUSTERV2") )
352 {
353 clusterFinder = new AliMUONPreClusterFinderV2;
354 }
355 else if ( strstr(opt,"PRECLUSTERV3") )
356 {
357 clusterFinder = new AliMUONPreClusterFinderV3;
358 }
359 else if ( strstr(opt,"PRECLUSTER") )
f9247068 360 {
361 clusterFinder = new AliMUONPreClusterFinder;
362 }
363 else if ( strstr(opt,"COG") )
364 {
93d7b017 365 clusterFinder = new AliMUONClusterFinderCOG(new AliMUONPreClusterFinder);
f9247068 366 }
93d7b017 367 else if ( strstr(opt,"SIMPLEFITV3") )
368 {
369 clusterFinder = new AliMUONClusterFinderSimpleFit(new AliMUONClusterFinderCOG(new AliMUONPreClusterFinderV3));
370 }
f9247068 371 else if ( strstr(opt,"SIMPLEFIT") )
372 {
93d7b017 373 clusterFinder = new AliMUONClusterFinderSimpleFit(new AliMUONClusterFinderCOG(new AliMUONPreClusterFinder));
f9247068 374 }
375 else if ( strstr(opt,"MLEM:DRAW") )
376 {
93d7b017 377 clusterFinder = new AliMUONClusterFinderMLEM(kTRUE,new AliMUONPreClusterFinder);
f9247068 378 }
93d7b017 379 else if ( strstr(opt,"MLEMV3") )
380 {
381 clusterFinder = new AliMUONClusterFinderMLEM(kFALSE,new AliMUONPreClusterFinderV3);
382 }
383 else if ( strstr(opt,"MLEMV2") )
384 {
385 clusterFinder = new AliMUONClusterFinderMLEM(kFALSE,new AliMUONPreClusterFinderV2);
386 }
f9247068 387 else if ( strstr(opt,"MLEM") )
388 {
93d7b017 389 clusterFinder = new AliMUONClusterFinderMLEM(kFALSE,new AliMUONPreClusterFinder);
f9247068 390 }
22899106 391 else
392 {
3304fa09 393 AliError(Form("clustering mode \"%s\" does not exist",opt.Data()));
c5ce806f 394 return 0x0;
22899106 395 }
f9247068 396
c5ce806f 397 return clusterFinder;
398}
399
400//_____________________________________________________________________________
401void
402AliMUONReconstructor::CreateClusterServer() const
403{
404 /// Create cluster server
405
406 if ( fClusterServer ) return;
407
408 AliCodeTimerAuto("")
409
410 AliDebug(1,"");
411
15d30ed4 412 AliMUONVClusterFinder* clusterFinder = CreateClusterFinder(GetRecoParam()->GetClusteringMode());
c5ce806f 413
414 if ( !clusterFinder ) return;
415
3304fa09 416 AliInfo(Form("Will use %s for clusterizing",clusterFinder->ClassName()));
f9247068 417
c5ce806f 418 fClusterServer = new AliMUONSimpleClusterServer(*clusterFinder,*fTransformer);
f9247068 419}
420
cac2eb58 421//_____________________________________________________________________________
22899106 422void
423AliMUONReconstructor::CreateCalibrator() const
cac2eb58 424{
22899106 425 /// Create the calibrator
2457f726 426
93d7b017 427 AliCodeTimerAuto("")
3bc8b580 428
22899106 429 Int_t runNumber = AliCDBManager::Instance()->GetRun();
3bc8b580 430
22899106 431 AliInfo("Calibration will occur.");
432
433 fCalibrationData = new AliMUONCalibrationData(runNumber);
434 if ( !fCalibrationData->IsValid() )
435 {
436 AliError("Could not retrieve calibrations !");
437 delete fCalibrationData;
438 fCalibrationData = 0x0;
439 return;
440 }
441
442 // Check that we get all the calibrations we'll need
443 if ( !fCalibrationData->Pedestals() ||
444 !fCalibrationData->Gains() ||
445 !fCalibrationData->HV() )
446 {
447 AliFatal("Could not access all required calibration data");
9ffe3ef4 448 }
cc87ebcd 449
22899106 450 TString opt(GetOption());
451 opt.ToUpper();
b2d7df0b 452
22899106 453 if ( strstr(opt,"NOSTATUSMAP") )
454 {
22f7c9ba 455 AliWarning("NOSTATUSMAP is obsolete");
22899106 456 }
22f7c9ba 457
458 fDigitCalibrator = new AliMUONDigitCalibrator(*fCalibrationData);
22899106 459}
9c4b1ee7 460
22899106 461//_____________________________________________________________________________
462AliMUONVDigitStore*
463AliMUONReconstructor::DigitStore() const
464{
465 /// Return (and create if necessary) the digit container
466 if (!fDigitStore)
467 {
93d7b017 468 TString sopt(GetOption());
469 sopt.ToUpper();
470
471 AliInfo(Form("Options=%s",sopt.Data()));
472
473 if ( sopt.Contains("DIGITSTOREV1") )
474 {
475 fDigitStore = AliMUONVDigitStore::Create("AliMUONDigitStoreV1");
476 }
477 else if ( sopt.Contains("DIGITSTOREV2R") )
478 {
479 fDigitStore = AliMUONVDigitStore::Create("AliMUONDigitStoreV2R");
480 }
481 else if ( sopt.Contains("DIGITSTOREV2S") )
482 {
483 fDigitStore = AliMUONVDigitStore::Create("AliMUONDigitStoreV2S");
484 }
485
486 if (!fDigitStore) fDigitStore = AliMUONVDigitStore::Create("AliMUONDigitStoreV2R");
487
488 AliInfo(Form("Will use %s to store digits during reconstruction",fDigitStore->ClassName()));
22899106 489 }
490 return fDigitStore;
491}
94f6fba9 492
22899106 493//_____________________________________________________________________________
494void
495AliMUONReconstructor::FillTreeR(AliMUONVTriggerStore* triggerStore,
22899106 496 TTree& clustersTree) const
497{
498 /// Write the trigger and cluster information into TreeR
499
93d7b017 500 AliCodeTimerAuto("")
cc87ebcd 501
22899106 502 AliDebug(1,"");
503
504 Bool_t ok(kFALSE);
505 if ( triggerStore )
506 {
c5ce806f 507 ok = triggerStore->Connect(clustersTree,kTRUE);
22899106 508 if (!ok)
b2d7df0b 509 {
22899106 510 AliError("Could not create triggerStore branches in TreeR");
cc87ebcd 511 }
cac2eb58 512 }
22899106 513
22899106 514 if (ok) // at least one type of branches created successfully
515 {
516 clustersTree.Fill();
517 }
cac2eb58 518}
cf464691 519
520//_____________________________________________________________________________
22899106 521Bool_t
522AliMUONReconstructor::HasDigitConversion() const
cf464691 523{
22899106 524 /// We *do* have digit conversion, but we might advertise it only
525 /// if we want to save the digits.
526
527 TString opt(GetOption());
528 opt.ToUpper();
529 if ( opt.Contains("SAVEDIGITS" ) && !opt.Contains("NOLOCALRECONSTRUCTION") )
530 {
531 return kTRUE;
532 }
533 else
534 {
535 return kFALSE;
536 }
537}
f9247068 538
22899106 539//_____________________________________________________________________________
540void
541AliMUONReconstructor::Reconstruct(AliRawReader* rawReader, TTree* clustersTree) const
542{
543 /// This method is called by AliReconstruction if HasLocalReconstruction()==kTRUE AND
544 /// HasDigitConversion()==kFALSE
8cde4af5 545
22899106 546 if ( !clustersTree )
547 {
548 AliError("clustersTree is 0x0 !");
549 return;
550 }
b2d7df0b 551
93d7b017 552 ConvertDigits(rawReader,DigitStore(),TriggerStore());
c5ce806f 553
554 FillTreeR(TriggerStore(),*clustersTree);
22899106 555}
64b056bc 556
196471e9 557//_____________________________________________________________________________
22899106 558void
559AliMUONReconstructor::Reconstruct(TTree* digitsTree, TTree* clustersTree) const
a2da7817 560{
22899106 561 /// This method is called by AliReconstruction if HasLocalReconstruction()==kTRUE
562 /// AND HasDigitConversion()==kTRUE
563
2060b217 564 AliCodeTimerAuto("")
93d7b017 565
22899106 566 AliDebug(1,"");
567
568 if (!digitsTree || !clustersTree)
569 {
570 AliError(Form("Tree is null : digitsTree=%p clustersTree=%p",
571 digitsTree,clustersTree));
572 return;
573 }
d19b6003 574
22899106 575 if (!fDigitStore)
576 {
577 fDigitStore = AliMUONVDigitStore::Create(*digitsTree);
578 if (!fDigitStore)
579 {
580 AliError(Form("Could not get DigitStore from %s",digitsTree->GetName()));
581 }
582 else
583 {
584 AliInfo(Form("Created %s from %s",fDigitStore->ClassName(),digitsTree->GetName()));
585 }
586 }
587 if (!fTriggerStore)
588 {
589 fTriggerStore = AliMUONVTriggerStore::Create(*digitsTree);
590 if (!fTriggerStore)
591 {
592 AliError(Form("Could not get TriggerStore from %s",digitsTree->GetName()));
593 }
594 else
595 {
596 AliInfo(Form("Created %s from %s",fTriggerStore->ClassName(),digitsTree->GetName()));
597 }
598 }
599
600 if (!fTriggerStore && !fDigitStore)
601 {
602 AliError("No store at all. Nothing to do.");
603 return;
604 }
605
606 // insure we start with empty stores
607 if ( fDigitStore )
608 {
609 fDigitStore->Clear();
610 Bool_t alone = ( fTriggerStore ? kFALSE : kTRUE );
611 Bool_t ok = fDigitStore->Connect(*digitsTree,alone);
612 if (!ok)
613 {
614 AliError("Could not connect digitStore to digitsTree");
615 return;
616 }
617 }
618 if ( fTriggerStore )
619 {
620 fTriggerStore->Clear();
621 Bool_t alone = ( fDigitStore ? kFALSE : kTRUE );
622 Bool_t ok = fTriggerStore->Connect(*digitsTree,alone);
623 if (!ok)
624 {
625 AliError("Could not connect triggerStore to digitsTree");
626 return;
627 }
628 }
629
630 digitsTree->GetEvent(0);
631
632 if ( fDigitStore )
633 {
e729a0c8 634 // Insure we got calibrated digits (if we reconstruct from pure simulated,
635 // i.e. w/o going through raw data, this will be the case)
636 TIter next(fDigitStore->CreateIterator());
637 AliMUONVDigit* digit = static_cast<AliMUONVDigit*>(next());
638 if (!digit->IsCalibrated())
639 {
640 Calibrate(*fDigitStore);
641 }
22899106 642 }
643
c5ce806f 644 FillTreeR(fTriggerStore,*clustersTree);
cac2eb58 645}
196471e9 646
647//_____________________________________________________________________________
22899106 648AliMUONVTriggerStore*
649AliMUONReconstructor::TriggerStore() const
196471e9 650{
22899106 651 /// Return (and create if necessary and allowed) the trigger container
652 TString sopt(GetOption());
653 sopt.ToUpper();
654
655 if (sopt.Contains("TRIGGERDISABLE"))
656 {
657 delete fTriggerStore;
658 fTriggerStore = 0x0;
659 }
660 else
661 {
662 if (!fTriggerStore)
663 {
664 fTriggerStore = new AliMUONTriggerStoreV1;
665 }
666 }
667 return fTriggerStore;
196471e9 668}