From 70d92702ce82b1d6e1e9b62ec50a0a811852bb7f Mon Sep 17 00:00:00 2001 From: fca Date: Tue, 20 Oct 2009 21:15:46 +0000 Subject: [PATCH] Redefinition of macro to avoid warnings --- MUON/AliMUONCDB.cxx | 22 ++++---- MUON/AliMUONCalibrationData.cxx | 4 +- MUON/AliMUONClusterFinderMLEM.cxx | 10 ++-- MUON/AliMUONClusterFinderPeakCOG.cxx | 8 +-- MUON/AliMUONClusterFinderPeakFit.cxx | 8 +-- MUON/AliMUONContourHandler.cxx | 6 +-- MUON/AliMUONContourMaker.cxx | 18 +++---- MUON/AliMUONContourMakerTest.cxx | 2 +- MUON/AliMUONDigitMaker.cxx | 4 +- MUON/AliMUONDigitizerV3.cxx | 4 +- MUON/AliMUONGainEventGenerator.cxx | 4 +- MUON/AliMUONLegacyClusterServer.cxx | 2 +- MUON/AliMUONManuContourMaker.cxx | 8 +-- MUON/AliMUONPadStatusMaker.cxx | 12 ++--- MUON/AliMUONPadStatusMapMaker.cxx | 6 +-- MUON/AliMUONPainterHelper.cxx | 6 +-- MUON/AliMUONPedestalEventGenerator.cxx | 12 ++--- MUON/AliMUONPreClusterFinder.cxx | 2 +- MUON/AliMUONPreClusterFinderV3.cxx | 4 +- MUON/AliMUONQADataMakerRec.cxx | 22 ++++---- MUON/AliMUONRawWriter.cxx | 12 ++--- MUON/AliMUONReconstructor.cxx | 18 +++---- MUON/AliMUONSimpleClusterServer.cxx | 2 +- MUON/AliMUONTracker.cxx | 6 +-- MUON/AliMUONTrackerData.cxx | 14 +++--- MUON/AliMUONTrackerDataMaker.cxx | 4 +- MUON/AliMUONTriggerTrackToTrackerClusters.cxx | 2 +- MUON/AliMUONVTrackReconstructor.cxx | 8 +-- MUON/MUONTimeRawStreamTrigger.C | 2 +- MUON/mapping/AliMpDCSNamer.cxx | 4 +- MUON/mapping/AliMpDetElement.cxx | 2 +- MUON/mapping/AliMpFastSegmentation.cxx | 2 +- MUON/mapping/AliMpMotifMap.cxx | 10 ++-- MUON/mapping/macros/timeMapping.C | 12 ++--- MUON/mapping/macros/timeMapping2.C | 12 ++--- STEER/AliCodeTimer.h | 12 ++--- STEER/AliQAManager.cxx | 6 +-- STEER/AliReconstruction.cxx | 50 +++++++++---------- STEER/AliSimulation.cxx | 20 ++++---- 39 files changed, 181 insertions(+), 181 deletions(-) diff --git a/MUON/AliMUONCDB.cxx b/MUON/AliMUONCDB.cxx index 85699d84727..72c572999c6 100644 --- a/MUON/AliMUONCDB.cxx +++ b/MUON/AliMUONCDB.cxx @@ -440,7 +440,7 @@ AliMUONCDB::MakePedestalStore(AliMUONVStore& pedestalStore, Bool_t defaultValues /// otherwise mean and sigma are from a gaussian (with parameters /// defined below by the kPedestal* constants) - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); Int_t nchannels(0); Int_t nmanus(0); @@ -539,7 +539,7 @@ AliMUONCDB::MakeRejectListStore(Bool_t defaultValues) { /// Create a reject list - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONRejectList* rl = new AliMUONRejectList; @@ -559,7 +559,7 @@ AliMUONCDB::MakeOccupancyMapStore(AliMUONVStore& occupancyMapStore, Bool_t defau { /// Create an occupancy map. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); Int_t nmanus(0); @@ -619,7 +619,7 @@ AliMUONCDB::MakeCapacitanceStore(AliMUONVStore& capaStore, Bool_t defaultValues) /// otherwise they are from a gaussian with parameters defined in the /// kCapa* constants below. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); Int_t nchannels(0); Int_t nmanus(0); @@ -705,7 +705,7 @@ AliMUONCDB::MakeGainStore(AliMUONVStore& gainStore, Bool_t defaultValues) /// otherwise parameters are taken from gaussians with parameters /// defined in the k* constants below. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); Int_t nchannels(0); Int_t nmanus(0); @@ -780,7 +780,7 @@ AliMUONCDB::MakeLocalTriggerMaskStore(AliMUONVStore& localBoardMasks) const { /// Generate local trigger masks store. All masks are set to FFFF - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); Int_t ngenerated(0); // Generate fake mask values for all localboards and put that into @@ -808,7 +808,7 @@ AliMUONCDB::MakeRegionalTriggerConfigStore(AliMUONRegionalTriggerConfig& rtm) co { /// Make a regional trigger config store. Mask is set to FFFF for each local board (Ch.F.) - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); if ( ! rtm.ReadData(AliMpFiles::LocalTriggerBoardMapping()) ) { AliErrorStream() << "Error when reading from mapping file" << endl; @@ -825,7 +825,7 @@ AliMUONCDB::MakeGlobalTriggerConfigStore(AliMUONGlobalCrateConfig& gtm) const { /// Make a global trigger config store. All masks (disable) set to 0x00 for each Darc board (Ch.F.) - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); return gtm.ReadData(AliMpFiles::GlobalTriggerBoardMapping()); } @@ -837,7 +837,7 @@ AliMUONCDB::MakeTriggerLUT(const char* file) const { /// Make a triggerlut object, from a file. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONTriggerLut* lut = new AliMUONTriggerLut; lut->ReadFromFile(file); @@ -850,7 +850,7 @@ AliMUONCDB::MakeTriggerEfficiency(const char* file) const { /// Make a trigger efficiency object from a file. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); return new AliMUONTriggerEfficiencyCells(file); } @@ -906,7 +906,7 @@ AliMUONCDB::MakeNeighbourStore(AliMUONVStore& neighbourStore) /// Fill the neighbours store with, for each channel, a TObjArray of its /// neighbouring pads (including itself) - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliInfo("Generating NeighbourStore. This will take a while. Please be patient."); diff --git a/MUON/AliMUONCalibrationData.cxx b/MUON/AliMUONCalibrationData.cxx index ef68fda7f40..64ce1efe3ab 100644 --- a/MUON/AliMUONCalibrationData.cxx +++ b/MUON/AliMUONCalibrationData.cxx @@ -194,7 +194,7 @@ AliMUONCalibrationData::CreateObject(Int_t runNumber, const char* path, Int_t* s /// Access the CDB for a given path (e.g. MUON/Calib/Pedestals), /// and return the corresponding TObject. - AliCodeTimerAutoClass(Form("%d : %s",runNumber,path)); + AliCodeTimerAutoClass(Form("%d : %s",runNumber,path),); AliCDBManager* man = AliCDBManager::Instance(); @@ -216,7 +216,7 @@ AliMUONCalibrationData::CreateObject(Int_t runNumber, const char* path, Int_t* s { - AliCodeTimerAutoClass(Form("Failed to get %s for run %d",path,runNumber)); + AliCodeTimerAutoClass(Form("Failed to get %s for run %d",path,runNumber),0); } diff --git a/MUON/AliMUONClusterFinderMLEM.cxx b/MUON/AliMUONClusterFinderMLEM.cxx index 2c7035ef019..57f5c2b5714 100644 --- a/MUON/AliMUONClusterFinderMLEM.cxx +++ b/MUON/AliMUONClusterFinderMLEM.cxx @@ -110,7 +110,7 @@ AliMUONClusterFinderMLEM::Prepare(Int_t detElemId, const AliMpVSegmentation* seg[2]) { /// Prepare for clustering -// AliCodeTimerAuto("") +// AliCodeTimerAuto("",) for ( Int_t i = 0; i < 2; ++i ) { @@ -147,7 +147,7 @@ AliMUONCluster* AliMUONClusterFinderMLEM::NextCluster() { /// Return next cluster -// AliCodeTimerAuto("") +// AliCodeTimerAuto("",) // if the list of clusters is not void, pick one from there TObject* o = fClusterList.At(++fClusterNumber); @@ -196,7 +196,7 @@ AliMUONClusterFinderMLEM::WorkOnPreCluster() /// Starting from a precluster, builds a pixel array, and then /// extract clusters from this array - // AliCodeTimerAuto("") + // AliCodeTimerAuto("",) if (fDebug) { cout << " *** Event # " << fEventNumber @@ -293,7 +293,7 @@ AliMUONClusterFinderMLEM::CheckPrecluster(const AliMUONCluster& origCluster) /// Check precluster in order to attempt to simplify it (mostly for /// two-cathode preclusters) - AliCodeTimerAuto("") + AliCodeTimerAuto("",) // Disregard small clusters (leftovers from splitting or noise) if ((origCluster.Multiplicity()==1 || origCluster.Multiplicity()==2) && @@ -807,7 +807,7 @@ Bool_t AliMUONClusterFinderMLEM::MainLoop(AliMUONCluster& cluster, Int_t iSimple { /// Repeat MLEM algorithm until pixel size becomes sufficiently small - // AliCodeTimerAuto("") + // AliCodeTimerAuto("",) Int_t nPix = fPixArray->GetLast()+1; diff --git a/MUON/AliMUONClusterFinderPeakCOG.cxx b/MUON/AliMUONClusterFinderPeakCOG.cxx index 9f22060b365..54139c179b4 100644 --- a/MUON/AliMUONClusterFinderPeakCOG.cxx +++ b/MUON/AliMUONClusterFinderPeakCOG.cxx @@ -102,7 +102,7 @@ AliMUONClusterFinderPeakCOG::Prepare(Int_t detElemId, TClonesArray* pads[2], const AliMpArea& area, const AliMpVSegmentation* seg[2]) { /// Prepare for clustering -// AliCodeTimerAuto("") +// AliCodeTimerAuto("",) for ( Int_t i = 0; i < 2; ++i ) { @@ -135,7 +135,7 @@ AliMUONCluster* AliMUONClusterFinderPeakCOG::NextCluster() { /// Return next cluster -// AliCodeTimerAuto("") +// AliCodeTimerAuto("",) // if the list of clusters is not void, pick one from there TObject* o = fClusterList.At(++fClusterNumber); @@ -184,7 +184,7 @@ AliMUONClusterFinderPeakCOG::WorkOnPreCluster() /// Starting from a precluster, builds a pixel array, and then /// extract clusters from this array - // AliCodeTimerAuto("") + // AliCodeTimerAuto("",) if (fDebug) { cout << " *** Event # " << fEventNumber @@ -250,7 +250,7 @@ AliMUONClusterFinderPeakCOG::CheckPrecluster(const AliMUONCluster& origCluster) /// Check precluster in order to attempt to simplify it (mostly for /// two-cathode preclusters) - // AliCodeTimerAuto("") + // AliCodeTimerAuto("",) // Disregard small clusters (leftovers from splitting or noise) if ((origCluster.Multiplicity()==1 || origCluster.Multiplicity()==2) && diff --git a/MUON/AliMUONClusterFinderPeakFit.cxx b/MUON/AliMUONClusterFinderPeakFit.cxx index 96d4cf52f03..02685a6c1ce 100644 --- a/MUON/AliMUONClusterFinderPeakFit.cxx +++ b/MUON/AliMUONClusterFinderPeakFit.cxx @@ -174,7 +174,7 @@ AliMUONClusterFinderPeakFit::Prepare(Int_t detElemId, TClonesArray* pads[2], const AliMpArea& area, const AliMpVSegmentation* seg[2]) { /// Prepare for clustering -// AliCodeTimerAuto("") +// AliCodeTimerAuto("",) for ( Int_t i = 0; i < 2; ++i ) { @@ -227,7 +227,7 @@ AliMUONCluster* AliMUONClusterFinderPeakFit::NextCluster() { /// Return next cluster -// AliCodeTimerAuto("") +// AliCodeTimerAuto("",) // if the list of clusters is not void, pick one from there TObject* o = fClusterList.At(++fClusterNumber); @@ -276,7 +276,7 @@ AliMUONClusterFinderPeakFit::WorkOnPreCluster() /// Starting from a precluster, builds a pixel array, and then /// extract clusters from this array - // AliCodeTimerAuto("") + // AliCodeTimerAuto("",) if (fDebug) { cout << " *** Event # " << fEventNumber @@ -346,7 +346,7 @@ AliMUONClusterFinderPeakFit::CheckPrecluster(const AliMUONCluster& origCluster) /// Check precluster in order to attempt to simplify it (mostly for /// two-cathode preclusters) - // AliCodeTimerAuto("") + // AliCodeTimerAuto("",) // Disregard small clusters (leftovers from splitting or noise) if ((origCluster.Multiplicity()==1 || origCluster.Multiplicity()==2) && diff --git a/MUON/AliMUONContourHandler.cxx b/MUON/AliMUONContourHandler.cxx index 68e8b534985..271f1ff81bf 100644 --- a/MUON/AliMUONContourHandler.cxx +++ b/MUON/AliMUONContourHandler.cxx @@ -120,7 +120,7 @@ AliMUONContourHandler::CreateContourList(const TObjArray& manuContours) /// of station0/chamber0 and station0/chamber1 in the example above). /// - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TIter next(&manuContours); AliMUONContour* contour; @@ -179,7 +179,7 @@ AliMUONContourHandler::GenerateAllContours(const TObjArray& manuContours) /// Note that manuContours should NOT be the owner of its contours, /// as they are adopted by the array returned by this method. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); // Get the list of contours to create TObjArray* mapArray = CreateContourList(manuContours); @@ -267,7 +267,7 @@ AliMUONContourHandler::GenerateTransformations(Bool_t exploded) /// If exploded=kFALSE then we generate real transformations, otherwise /// we generate tweaked ones that look fine on screen. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONGeometryTransformer transformer; Bool_t ok = transformer.LoadGeometryData("transform.dat"); diff --git a/MUON/AliMUONContourMaker.cxx b/MUON/AliMUONContourMaker.cxx index 30b5d5f1c33..95956444ec0 100644 --- a/MUON/AliMUONContourMaker.cxx +++ b/MUON/AliMUONContourMaker.cxx @@ -84,7 +84,7 @@ AliMUONContourMaker::CreateContour(const TObjArray& polygons, const char* name) /// and get back the intermediate verticals and horizontal segments /// both arrays are arrays of AliMUONSegment objects. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); if ( polygons.IsEmpty() ) return 0x0; // protection against user error... @@ -105,7 +105,7 @@ AliMUONContourMaker::CreateContour(const TObjArray& polygons, const char* name) if ( polygons.GetLast() == 0 ) { - AliCodeTimerAuto("Trivial case"); + AliCodeTimerAuto("Trivial case",0); contour = new AliMUONContour(name); pol = static_cast(polygons.First()); contour->Add(*pol); @@ -155,7 +155,7 @@ AliMUONContourMaker::FinalizeContour(const TObjArray& verticals, /// For a list of vertical and horizontal edges, we build the final /// contour object. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TObjArray all; // array of AliMUONSegment TObjArray inorder; // array of AliMUONSegment @@ -248,7 +248,7 @@ AliMUONContourMaker::GetVerticalEdges(const TObjArray& polygons, TObjArray& poly /// From an array of polygons, extract the list of vertical edges. /// Output array polygonVerticalEdges should be empty before calling. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); for ( Int_t i = 0; i <= polygons.GetLast(); ++i ) { @@ -272,7 +272,7 @@ AliMUONContourMaker::GetYPositions(const TObjArray& polygonVerticalEdges, /// Fill the array yPositions with the different y positions found in /// polygonVerticalEdges - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); Double_t* y = new Double_t[polygonVerticalEdges.GetSize()*2]; Int_t n(0); @@ -316,7 +316,7 @@ AliMUONContourMaker::MergeContour(const TObjArray& contours, const char* name) c { /// Merge all the polygons of all contours into a single contour - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TObjArray polygons; polygons.SetOwner(kTRUE); @@ -350,7 +350,7 @@ AliMUONContourMaker::SortPoints(const TObjArray& polygonVerticalEdges, /// then on abcissa, and put them in output vector sortedPoints. /// Output array sortedPoints should be empty before calling this method. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); for ( Int_t i = 0; i <= polygonVerticalEdges.GetLast(); ++i ) { @@ -371,7 +371,7 @@ AliMUONContourMaker::Sweep(const TObjArray& polygonVerticalEdges, { /// This is the meat of the algorithm of the contour merging... - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TArrayD yPositions; GetYPositions(polygonVerticalEdges,yPositions); @@ -441,7 +441,7 @@ AliMUONContourMaker::VerticalToHorizontal(const TObjArray& polygonVerticalEdges, /// Deduce the set of horizontal edges from the vertical edges /// Output array horizontalEdges should be empty before calling this method - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TObjArray points; // array of AliMUONPointWithRef points.SetOwner(kTRUE); diff --git a/MUON/AliMUONContourMakerTest.cxx b/MUON/AliMUONContourMakerTest.cxx index d85d8864476..369c704e9b9 100644 --- a/MUON/AliMUONContourMakerTest.cxx +++ b/MUON/AliMUONContourMakerTest.cxx @@ -119,7 +119,7 @@ AliMUONContourMakerTest::Exec(const Option_t* opt) AliCodeTimer::Instance()->Reset(); - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TString sopt(opt); diff --git a/MUON/AliMUONDigitMaker.cxx b/MUON/AliMUONDigitMaker.cxx index 5bc70b373b6..b97c1240f02 100644 --- a/MUON/AliMUONDigitMaker.cxx +++ b/MUON/AliMUONDigitMaker.cxx @@ -219,7 +219,7 @@ AliMUONDigitMaker::ReadTrackerDDL(AliRawReader* rawReader) AliDebug(1,""); - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); // elex info Int_t buspatchId; @@ -408,7 +408,7 @@ Int_t AliMUONDigitMaker::TriggerDigits(Int_t nBoard, { /// make digits for trigger from pattern, and add them to digitStore - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); Int_t detElemId; diff --git a/MUON/AliMUONDigitizerV3.cxx b/MUON/AliMUONDigitizerV3.cxx index b10a0b6e172..19f8fba94a7 100644 --- a/MUON/AliMUONDigitizerV3.cxx +++ b/MUON/AliMUONDigitizerV3.cxx @@ -383,7 +383,7 @@ AliMUONDigitizerV3::Exec(Option_t*) /// Then we generate noise-only digits (for tracker only) /// And we finally generate the trigger outputs. - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliDebug(1, "Running digitizer."); @@ -504,7 +504,7 @@ AliMUONDigitizerV3::GenerateNoisyDigits(AliMUONVDigitStore& digitStore) /// have a signal above the noise cut (ped+n*sigma_ped), i.e. digits /// that are "only noise". - AliCodeTimerAuto("") + AliCodeTimerAuto("",) for ( Int_t i = 0; i < AliMUONConstants::NTrackingCh(); ++i ) { diff --git a/MUON/AliMUONGainEventGenerator.cxx b/MUON/AliMUONGainEventGenerator.cxx index a8184df604a..5bd50f9e5c1 100644 --- a/MUON/AliMUONGainEventGenerator.cxx +++ b/MUON/AliMUONGainEventGenerator.cxx @@ -116,7 +116,7 @@ AliMUONGainEventGenerator::Exec(Option_t*) AliInfo(Form("Creating directory %s",dir.Data())); gSystem->MakeDirectory(dir.Data()); gSystem->ChangeDirectory(dir.Data()); - AliCodeTimerAuto(Form("generation of pedestal for run %d",runNumber)); + AliCodeTimerAuto(Form("generation of pedestal for run %d",runNumber),); TString pedfile; if ( fDateBaseFileName.Length() > 0 ) pedfile = Form("%s.%d",fDateBaseFileName.Data(),runNumber); AliMUONPedestalEventGenerator pgen(runNumber,fNofEventsPerFile,pedfile.Data()); @@ -135,7 +135,7 @@ AliMUONGainEventGenerator::GeneratePedestals(Int_t runNumber, Float_t injection) /// Generate "pedestal" values for a given run, by "decalibrating" /// charge injection - AliCodeTimerAuto(Form("Run %d injection %7.2f",runNumber,injection)); + AliCodeTimerAuto(Form("Run %d injection %7.2f",runNumber,injection),); TIter next(fSourceGains->CreateIterator()); AliMUONVStore* generatedPedestals = fSourcePedestals->Create(); diff --git a/MUON/AliMUONLegacyClusterServer.cxx b/MUON/AliMUONLegacyClusterServer.cxx index 85adda1ba3f..562af6b4882 100644 --- a/MUON/AliMUONLegacyClusterServer.cxx +++ b/MUON/AliMUONLegacyClusterServer.cxx @@ -75,7 +75,7 @@ AliMUONLegacyClusterServer::Clusterize(Int_t chamberId, /// /// Return the number of clusters added to clusterStore - AliCodeTimerAuto(Form("Chamber %d",chamberId)); + AliCodeTimerAuto(Form("Chamber %d",chamberId),); if ( fBypassSt4 && ( chamberId == 6 || chamberId == 7 ) ) { diff --git a/MUON/AliMUONManuContourMaker.cxx b/MUON/AliMUONManuContourMaker.cxx index 6b530bddf09..4b2d0345178 100644 --- a/MUON/AliMUONManuContourMaker.cxx +++ b/MUON/AliMUONManuContourMaker.cxx @@ -79,7 +79,7 @@ AliMUONManuContourMaker::CreateManuContour(Int_t detElemId, Int_t manuId, const { /// Create the contour of a given manu (global coordinates) - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TString sname(name); @@ -122,7 +122,7 @@ AliMUONManuContourMaker::CreateMotifContour(const AliMpMotifPosition& motifPosit { /// Create the contour of a given MOTIF (i.e. local coordinates only). - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TString mpName(NameIt(motifPosition)); @@ -186,7 +186,7 @@ AliMUONManuContourMaker::CreateMotifContour(const AliMpMotifPosition& motifPosit } { - AliCodeTimerAuto("localmanucontour.add"); + AliCodeTimerAuto("localmanucontour.add",0); fLocalManuContours.Add(new TObjString(mpName),contour); } @@ -201,7 +201,7 @@ AliMUONManuContourMaker::GenerateManuContours(Bool_t stopAtError) /// (to go from local to global). That transformation need not be the real one (i.e. /// it can be an "exploded" one to ease visualization). - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TObjArray* manuContours = new TObjArray; diff --git a/MUON/AliMUONPadStatusMaker.cxx b/MUON/AliMUONPadStatusMaker.cxx index 97a7d1b648b..bc695d29add 100644 --- a/MUON/AliMUONPadStatusMaker.cxx +++ b/MUON/AliMUONPadStatusMaker.cxx @@ -210,7 +210,7 @@ AliMUONPadStatusMaker::HVSt12Status(Int_t detElemId, Int_t sector, /// and the switch). /// Returns false if hv switch changed during the run. - AliCodeTimerAuto("") + AliCodeTimerAuto("",) Bool_t error = kFALSE; hvChannelTooLow = kFALSE; @@ -277,7 +277,7 @@ AliMUONPadStatusMaker::HVSt345Status(Int_t detElemId, Int_t pcbIndex, /// Returns false if something goes wrong (in particular if /// hv switch changed during the run). - AliCodeTimerAuto("") + AliCodeTimerAuto("",) Bool_t error = kFALSE; hvChannelTooLow = kFALSE; @@ -387,7 +387,7 @@ AliMUONPadStatusMaker::HVStatus(Int_t detElemId, Int_t manuId) const { /// Get HV status of one manu - AliCodeTimerAuto("") + AliCodeTimerAuto("",) if ( !fkCalibrationData.HV() ) return kMissing; @@ -591,7 +591,7 @@ AliMUONPadStatusMaker::PadStatus(Int_t detElemId, Int_t manuId) const if (!param) { // not already there, so compute it now - AliCodeTimerAuto("ComputeStatus"); + AliCodeTimerAuto("ComputeStatus",); param = ComputeStatus(detElemId,manuId); } return param; @@ -619,7 +619,7 @@ AliMUONPadStatusMaker::SetHVStatus(Int_t detElemId, Int_t index, Int_t status) c /// Assign status to all manus in a given HV "zone" (defined by index, meaning /// is different thing from St12 and St345) - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliMpDetElement* de = AliMpDDLStore::Instance()->GetDetElement(detElemId); @@ -661,7 +661,7 @@ AliMUONPadStatusMaker::Report(UInt_t mask) /// and the various reasons why they are bad (with occurence rates) AliInfo(""); - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONLogger log(1064008); diff --git a/MUON/AliMUONPadStatusMapMaker.cxx b/MUON/AliMUONPadStatusMapMaker.cxx index fe89dd55f16..b14eeb962ba 100644 --- a/MUON/AliMUONPadStatusMapMaker.cxx +++ b/MUON/AliMUONPadStatusMapMaker.cxx @@ -95,7 +95,7 @@ fComputeOnDemand(deferredInitialization) /// ctor if (!deferredInitialization) { - AliCodeTimerAuto("Computing complete status map at once"); + AliCodeTimerAuto("Computing complete status map at once",); AliMUONVStore* neighboursStore = padStatusMaker.NeighboursStore(); AliMUONVCalibParam* param; TIter next(neighboursStore->CreateIterator()); @@ -195,7 +195,7 @@ AliMUONPadStatusMapMaker::ComputeStatusMap(Int_t detElemId, Int_t manuId) const /// Compute the status map for a given manu, and add it to our internal /// fStatusMap internal storage - AliCodeTimerAuto("(Int_t,Int_t)") + AliCodeTimerAuto("(Int_t,Int_t)",) AliMUONVCalibParam* param = new AliMUONCalibParamNI(1,AliMpConstants::ManuNofChannels(), detElemId,manuId,-1); @@ -264,7 +264,7 @@ AliMUONPadStatusMapMaker::RefreshRejectProbabilities() if ( !fRejectProbabilities ) return; - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); fRejectList->Clear(); diff --git a/MUON/AliMUONPainterHelper.cxx b/MUON/AliMUONPainterHelper.cxx index eeb6131987f..2b856aa7ee5 100644 --- a/MUON/AliMUONPainterHelper.cxx +++ b/MUON/AliMUONPainterHelper.cxx @@ -143,7 +143,7 @@ AliMUONPainterHelper::GenerateDefaultMatrices() { /// Kind of bootstrap method to trigger the generation of all contours - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); fPainterMatrices = new TObjArray; fPainterMatrices->SetOwner(kFALSE); @@ -304,7 +304,7 @@ AliMUONPainterHelper::Instance() if (fgInstance) return fgInstance; - AliCodeTimerAutoClass(""); + AliCodeTimerAutoClass("",); fgInstance = new AliMUONPainterHelper; fgInstance->fEnv = new AliMUONPainterEnv; @@ -408,7 +408,7 @@ void AliMUONPainterHelper::RegisterContour(AliMUONContour* contour, Bool_t explodedView) { /// contour is adopted by contourMaker - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliDebug(1,contour->GetName()); AliMUONContourHandler* ch = fReal; if ( explodedView ) diff --git a/MUON/AliMUONPedestalEventGenerator.cxx b/MUON/AliMUONPedestalEventGenerator.cxx index c3e2d73ab55..d6c7958b1dc 100644 --- a/MUON/AliMUONPedestalEventGenerator.cxx +++ b/MUON/AliMUONPedestalEventGenerator.cxx @@ -146,7 +146,7 @@ AliMUONPedestalEventGenerator::ConvertRawFilesToDate() /// convert raw data DDL files to DATE files with the program "dateStream". /// we make one file per LDC - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliInfo("Converting raw to date"); @@ -246,7 +246,7 @@ AliMUONPedestalEventGenerator::Exec(Option_t*) { /// Main steering method - AliCodeTimerAuto("") + AliCodeTimerAuto("",) if (!fPedestals) { @@ -290,7 +290,7 @@ AliMUONPedestalEventGenerator::Exec(Option_t*) if ( fMakeDDL ) { - AliCodeTimerAuto("Digits2Raw"); + AliCodeTimerAuto("Digits2Raw",0); Digits2Raw(i); } } @@ -302,7 +302,7 @@ AliMUONPedestalEventGenerator::Exec(Option_t*) // Finally, if instructed to do so, convert DDL files to DATE file(s) if ( fMakeDDL && fDateFileName.Length() > 0 ) { - AliCodeTimerAuto("ConvertRawFilesToDate") + AliCodeTimerAuto("ConvertRawFilesToDate",1) Bool_t dateOutput = ConvertRawFilesToDate(); if (!dateOutput) { @@ -318,7 +318,7 @@ AliMUONPedestalEventGenerator::Digits2Raw(Int_t event) { /// Converts digits (from MUON.Digits.root file) to Raw DDL ascii files. - AliCodeTimerAuto("") + AliCodeTimerAuto("",) if (!fRawWriter) { @@ -353,7 +353,7 @@ AliMUONPedestalEventGenerator::GenerateDigits(AliMUONVDigitStore& digitStore) /// Generate digits (where ADC is set to pedestal value) for all MUON TRK /// and for 1 event. - AliCodeTimerAuto("") + AliCodeTimerAuto("",) digitStore.Clear(); diff --git a/MUON/AliMUONPreClusterFinder.cxx b/MUON/AliMUONPreClusterFinder.cxx index 5c43988fd66..81c00d7d97e 100644 --- a/MUON/AliMUONPreClusterFinder.cxx +++ b/MUON/AliMUONPreClusterFinder.cxx @@ -192,7 +192,7 @@ AliMUONCluster* AliMUONPreClusterFinder::NextCluster() { /// Builds the next cluster, and returns it. -// AliCodeTimerAuto("pre-clustering") +// AliCodeTimerAuto("pre-clustering",) // Start a new cluster Int_t id = fClusters.GetLast()+1; diff --git a/MUON/AliMUONPreClusterFinderV3.cxx b/MUON/AliMUONPreClusterFinderV3.cxx index d95f815c5ee..bfb209680c3 100644 --- a/MUON/AliMUONPreClusterFinderV3.cxx +++ b/MUON/AliMUONPreClusterFinderV3.cxx @@ -252,7 +252,7 @@ AliMUONPreClusterFinderV3::MakeClusters() { /// Associate (proto)preclusters to form (pre)clusters -// AliCodeTimerAuto("") +// AliCodeTimerAuto("",) for ( Int_t cathode = 0; cathode < 2; ++cathode ) { @@ -277,7 +277,7 @@ AliMUONPreClusterFinderV3::MakeCathodePreClusters(Int_t cathode) { /// Build (proto)preclusters from digits on a given cathode -// AliCodeTimerAuto(Form("Cathode %d",cathode)) +// AliCodeTimerAuto(Form("Cathode %d",cathode),) while ( fPads[cathode]->GetLast() > 0 ) { diff --git a/MUON/AliMUONQADataMakerRec.cxx b/MUON/AliMUONQADataMakerRec.cxx index 49a5a4affaf..089ca542b96 100644 --- a/MUON/AliMUONQADataMakerRec.cxx +++ b/MUON/AliMUONQADataMakerRec.cxx @@ -203,7 +203,7 @@ void AliMUONQADataMakerRec::Ctor() { /// Init some members - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); fDigitStore = AliMUONVDigitStore::Create("AliMUONDigitStoreV1"); fDigitMaker = new AliMUONDigitMaker(kTRUE); } @@ -254,7 +254,7 @@ AliMUONQADataMakerRec::~AliMUONQADataMakerRec() AliDebug(AliQAv1::GetQADebugLevel(),""); - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); delete fDigitStore; delete fTriggerStore; @@ -269,7 +269,7 @@ void AliMUONQADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjAr { /// Detector specific actions at end of cycle - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) { @@ -600,7 +600,7 @@ void AliMUONQADataMakerRec::InitRaws() { /// create Raws histograms in Raws subdir - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); const Bool_t expert = kTRUE ; const Bool_t saveCorr = kTRUE ; @@ -704,7 +704,7 @@ void AliMUONQADataMakerRec::InitRecPoints() { /// create Reconstructed Points histograms in RecPoints subdir - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); InitRecPointsTrigger(); InitRecPointsTracker(); @@ -718,7 +718,7 @@ void AliMUONQADataMakerRec::InitRecPointsTracker() const Bool_t expert = kTRUE ; const Bool_t image = kTRUE ; - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TH1I *h1I; TH1F *h1F; @@ -1263,14 +1263,14 @@ void AliMUONQADataMakerRec::MakeRecPointsTracker(TTree* clustersTree) // then we have clusters in TreeR, so let's take that opportunity // to QA them... - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); // Do nothing in case of calibration event if ( GetRecoParam()->GetEventSpecie() == AliRecoParam::kCalib ) return; if (!fClusterStore) { - AliCodeTimerAuto("ClusterStore creation"); + AliCodeTimerAuto("ClusterStore creation",0); fClusterStore = AliMUONVClusterStore::Create(*clustersTree); if (!fClusterStore) { @@ -1312,7 +1312,7 @@ void AliMUONQADataMakerRec::MakeRecPointsTrigger(TTree* clustersTree) { /// makes data from trigger response - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); // Fired pads info fDigitStore->Clear(); @@ -1365,7 +1365,7 @@ void AliMUONQADataMakerRec::MakeESDs(AliESDEvent* esd) { /// make QA data from ESDs - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); // Do nothing in case of calibration event if ( GetRecoParam()->GetEventSpecie() == AliRecoParam::kCalib ) return; @@ -1541,7 +1541,7 @@ AliMUONQADataMakerRec::FillTriggerDCSHistos() { /// Get HV and currents values for one trigger chamber - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONCalibrationData calibrationData(AliCDBManager::Instance()->GetRun()); diff --git a/MUON/AliMUONRawWriter.cxx b/MUON/AliMUONRawWriter.cxx index 4e5b4b9dff7..1a48584be06 100644 --- a/MUON/AliMUONRawWriter.cxx +++ b/MUON/AliMUONRawWriter.cxx @@ -153,7 +153,7 @@ Int_t AliMUONRawWriter::Digits2Raw(AliMUONVDigitStore* digitStore, { /// convert digits of the current event to raw data - AliCodeTimerAuto("") + AliCodeTimerAuto("",) Int_t idDDL; Char_t name[255]; @@ -162,7 +162,7 @@ Int_t AliMUONRawWriter::Digits2Raw(AliMUONVDigitStore* digitStore, if ( digitStore ) { - AliCodeTimerAuto("for Tracker") + AliCodeTimerAuto("for Tracker",0) AliMpExMap busPatchMap; @@ -189,7 +189,7 @@ Int_t AliMUONRawWriter::Digits2Raw(AliMUONVDigitStore* digitStore, if ( triggerStore ) { - AliCodeTimerAuto("for Trigger") + AliCodeTimerAuto("for Trigger",1) // trigger chambers @@ -223,7 +223,7 @@ AliMUONRawWriter::Digits2BusPatchMap(const AliMUONVDigitStore& digitStore, { /// Create bus patch structures corresponding to digits in the store - AliCodeTimerAuto("") + AliCodeTimerAuto("",) static const Int_t kMAXADC = (1<<12)-1; // We code the charge on a 12 bits ADC. @@ -316,7 +316,7 @@ AliMUONRawWriter::WriteTrackerDDL(AliMpExMap& busPatchMap, Int_t iDDL) // (((43 manus max per bus patch *64 channels + 4 bus patch words) * 5 bus patch // + 10 dsp words)*5 dsps + 8 block words)*2 blocks - AliCodeTimerAuto("") + AliCodeTimerAuto("",) if (fHeader == 0x0) { AliError("Raw data header must be set"); @@ -450,7 +450,7 @@ Int_t AliMUONRawWriter::WriteTriggerDDL(const AliMUONVTriggerStore& triggerStore { /// Write trigger DDL - AliCodeTimerAuto("") + AliCodeTimerAuto("",) if (fHeader == 0x0) { AliError("Raw data header must be set"); diff --git a/MUON/AliMUONReconstructor.cxx b/MUON/AliMUONReconstructor.cxx index 01effa9f37c..d8fe5d6dcab 100644 --- a/MUON/AliMUONReconstructor.cxx +++ b/MUON/AliMUONReconstructor.cxx @@ -186,7 +186,7 @@ AliMUONReconstructor::Calibrate(AliMUONVDigitStore& digitStore) const { CreateCalibrator(); } - AliCodeTimerAuto(Form("%s::Calibrate(AliMUONVDigitStore*)",fDigitCalibrator->ClassName())) + AliCodeTimerAuto(Form("%s::Calibrate(AliMUONVDigitStore*)",fDigitCalibrator->ClassName()),) fDigitCalibrator->Calibrate(digitStore); } @@ -220,7 +220,7 @@ void AliMUONReconstructor::ConvertDigits(AliRawReader* rawReader, TTree* digitsTree) const { /// convert raw data into a digit tree - AliCodeTimerAuto("") + AliCodeTimerAuto("",) Bool_t alone = ( TriggerStore() == 0 ); @@ -251,7 +251,7 @@ AliMUONReconstructor::CreateDigitMaker() const /// Create (and create if necessary) the digit maker if (fDigitMaker) return; - AliCodeTimerAuto("") + AliCodeTimerAuto("",) TString option = GetOption(); @@ -277,7 +277,7 @@ AliMUONReconstructor::CreateTriggerCircuit() const /// Return (and create if necessary) the trigger circuit object if (fTriggerCircuit) return; - AliCodeTimerAuto("") + AliCodeTimerAuto("",) fTriggerCircuit = new AliMUONTriggerCircuit(fTransformer); @@ -324,7 +324,7 @@ AliMUONReconstructor::CreateClusterFinder(const char* clusterFinderType) { /// Create a given cluster finder instance - AliCodeTimerAutoGeneral("") + AliCodeTimerAutoGeneral("",) AliMUONVClusterFinder* clusterFinder(0x0); @@ -396,7 +396,7 @@ AliMUONReconstructor::CreateClusterServer() const if ( fClusterServer ) return; - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONVClusterFinder* clusterFinder = CreateClusterFinder(GetRecoParam()->GetClusteringMode()); @@ -413,7 +413,7 @@ AliMUONReconstructor::CreateCalibrator() const { /// Create the calibrator - AliCodeTimerAuto("") + AliCodeTimerAuto("",) Int_t runNumber = AliCDBManager::Instance()->GetRun(); @@ -488,7 +488,7 @@ AliMUONReconstructor::FillTreeR(AliMUONVTriggerStore* triggerStore, { /// Write the trigger and cluster information into TreeR - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliDebug(1,""); @@ -597,7 +597,7 @@ AliMUONReconstructor::Reconstruct(TTree* digitsTree, TTree* clustersTree) const /// This method is called by AliReconstruction if HasLocalReconstruction()==kTRUE /// AND HasDigitConversion()==kTRUE - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliDebug(1,""); diff --git a/MUON/AliMUONSimpleClusterServer.cxx b/MUON/AliMUONSimpleClusterServer.cxx index 943a0f5140e..ad0e8e9a1e0 100644 --- a/MUON/AliMUONSimpleClusterServer.cxx +++ b/MUON/AliMUONSimpleClusterServer.cxx @@ -106,7 +106,7 @@ AliMUONSimpleClusterServer::Clusterize(Int_t chamberId, /// We first find out the list of DE that have a non-zero overlap with area, /// and then use the clusterfinder to find clusters in those areas (and DE). - AliCodeTimerAuto(Form("Chamber %d",chamberId)); + AliCodeTimerAuto(Form("Chamber %d",chamberId),); if ( fTriggerTrackStore && chamberId >= 6 ) { diff --git a/MUON/AliMUONTracker.cxx b/MUON/AliMUONTracker.cxx index 14196d48c5a..cee4276bc72 100644 --- a/MUON/AliMUONTracker.cxx +++ b/MUON/AliMUONTracker.cxx @@ -191,7 +191,7 @@ Int_t AliMUONTracker::Clusters2Tracks(AliESDEvent* esd) { /// Performs the tracking and store the resulting tracks in the ESD AliDebug(1,""); - AliCodeTimerAuto("") + AliCodeTimerAuto("",) if (!fTrackReco) { @@ -223,7 +223,7 @@ Int_t AliMUONTracker::Clusters2Tracks(AliESDEvent* esd) { // cut to reject shower events - AliCodeTimerAuto("MUON Shower events"); + AliCodeTimerAuto("MUON Shower events",0); AliWarning(Form("Probably got a shower event (%d trigger tracks). Will not reconstruct tracks.", TriggerTrackStore()->GetSize())); @@ -255,7 +255,7 @@ void AliMUONTracker::FillESD(const AliMUONVTrackStore& trackStore, AliESDEvent* { /// Fill the ESD from the trackStore AliDebug(1,""); - AliCodeTimerAuto("") + AliCodeTimerAuto("",) // get ITS vertex Double_t vertex[3] = {0., 0., 0.}; diff --git a/MUON/AliMUONTrackerData.cxx b/MUON/AliMUONTrackerData.cxx index a69b5aaff29..5cd32c07d11 100644 --- a/MUON/AliMUONTrackerData.cxx +++ b/MUON/AliMUONTrackerData.cxx @@ -565,7 +565,7 @@ AliMUONTrackerData::InternalAdd(const AliMUONVStore& store, TArrayI* nevents, Bo { /// Add the given external store to our internal store - AliCodeTimerAuto(GetName()); + AliCodeTimerAuto(GetName(),); if ( !replace) { @@ -741,7 +741,7 @@ AliMUONTrackerData::CreateBusPatchParam(Int_t busPatchId) const { /// Create storage for one bus patch - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMpBusPatch* bp = AliMpDDLStore::Instance()->GetBusPatch(busPatchId); @@ -811,7 +811,7 @@ AliMUONTrackerData::CreateChamberParam(Int_t chamberId) const { /// Create storage for one chamber - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONVCalibParam* chamber = new AliMUONCalibParamND(Dimension(),1,chamberId,0,0.0); @@ -913,7 +913,7 @@ AliMUONTrackerData::CreateDouble(const AliMUONVCalibParam& param, { /// Create a double version of VCalibParam, for internal use - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONVCalibParam* c = new AliMUONCalibParamND(Dimension(), param.Size(), @@ -970,7 +970,7 @@ AliMUONTrackerData::CreateDetectionElementParam(Int_t detElemId) const { /// Create storage for one detection element - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONVCalibParam* de = new AliMUONCalibParamND(Dimension(),1,detElemId,0,0.0); @@ -1411,7 +1411,7 @@ AliMUONTrackerData::CreateManuParam(Int_t detElemId, Int_t manuId) const { /// Create storage for one manu - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONVCalibParam* manu = new AliMUONCalibParamND(Dimension(),1,detElemId,manuId,0.0); @@ -1524,7 +1524,7 @@ AliMUONTrackerData::CreatePCBParam(Int_t detElemId, Int_t pcbIndex) const { /// Create storage for one PCB (station345 only) - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMpDCSNamer namer("TRACKER"); diff --git a/MUON/AliMUONTrackerDataMaker.cxx b/MUON/AliMUONTrackerDataMaker.cxx index b80d844b0ec..9c927c05333 100644 --- a/MUON/AliMUONTrackerDataMaker.cxx +++ b/MUON/AliMUONTrackerDataMaker.cxx @@ -294,7 +294,7 @@ AliMUONTrackerDataMaker::NextEvent() return kFALSE; } - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); static Int_t nphysics(0); static Int_t ngood(0); @@ -341,7 +341,7 @@ Bool_t AliMUONTrackerDataMaker::ProcessEvent() /// duplicate this critical piece of calibration code ! /// - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONRawStreamTrackerHP stream(fRawReader); diff --git a/MUON/AliMUONTriggerTrackToTrackerClusters.cxx b/MUON/AliMUONTriggerTrackToTrackerClusters.cxx index 82948a24279..65ed12a062e 100644 --- a/MUON/AliMUONTriggerTrackToTrackerClusters.cxx +++ b/MUON/AliMUONTriggerTrackToTrackerClusters.cxx @@ -100,7 +100,7 @@ AliMUONTriggerTrackToTrackerClusters::GenerateClusters(Int_t iChamber, /// Generate clusters in given chamber /// Return the number of clusters added to the clusterStore - AliCodeTimerAuto(Form("Chamber %d",iChamber)); + AliCodeTimerAuto(Form("Chamber %d",iChamber),); TIter next(fTriggerTrackStore->CreateIterator()); diff --git a/MUON/AliMUONVTrackReconstructor.cxx b/MUON/AliMUONVTrackReconstructor.cxx index fc4247b7220..51e6c39a8bc 100644 --- a/MUON/AliMUONVTrackReconstructor.cxx +++ b/MUON/AliMUONVTrackReconstructor.cxx @@ -141,7 +141,7 @@ void AliMUONVTrackReconstructor::EventReconstruct(AliMUONVClusterStore& clusterS { /// To reconstruct one event AliDebug(1,""); - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); // Reset array of tracks ResetTracks(); @@ -260,7 +260,7 @@ TClonesArray* AliMUONVTrackReconstructor::MakeSegmentsBetweenChambers(const AliM /// Return a new TClonesArray of segments. /// It is the responsibility of the user to delete it afterward. AliDebug(1,Form("Enter MakeSegmentsBetweenChambers (1..) %d-%d", ch1+1, ch2+1)); - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONVCluster *cluster1, *cluster2; AliMUONObjectPair *segment; @@ -1209,7 +1209,7 @@ void AliMUONVTrackReconstructor::ValidateTracksWithTrigger(AliMUONVTrackStore& t const AliMUONTrackHitPattern& trackHitPattern) { /// Try to match track from tracking system with trigger track - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); trackHitPattern.ExecuteValidation(trackStore, triggerTrackStore, triggerStore); } @@ -1221,7 +1221,7 @@ void AliMUONVTrackReconstructor::EventReconstructTrigger(const AliMUONTriggerCir { /// To make the trigger tracks from Local Trigger AliDebug(1, ""); - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliMUONGlobalTrigger* globalTrigger = triggerStore.Global(); diff --git a/MUON/MUONTimeRawStreamTrigger.C b/MUON/MUONTimeRawStreamTrigger.C index 3d0119be0cd..6d5db239639 100644 --- a/MUON/MUONTimeRawStreamTrigger.C +++ b/MUON/MUONTimeRawStreamTrigger.C @@ -306,7 +306,7 @@ Double_t TimeUsingNewDecoderOldInterface(AliBufferInfo* list, AliLocalStructInfo void Loop(const char* filename, Bool_t newDecoder) { - AliCodeTimerAutoGeneral(Form("Loop %s",(newDecoder ? "NEW":"OLD"))); + AliCodeTimerAutoGeneral(Form("Loop %s",(newDecoder ? "NEW":"OLD")),); AliRawReader* reader = AliRawReader::Create(filename); diff --git a/MUON/mapping/AliMpDCSNamer.cxx b/MUON/mapping/AliMpDCSNamer.cxx index fd3173e1abb..2dc3b4a2b97 100644 --- a/MUON/mapping/AliMpDCSNamer.cxx +++ b/MUON/mapping/AliMpDCSNamer.cxx @@ -660,7 +660,7 @@ AliMpDCSNamer::ManuId2PCBIndex(Int_t detElemId, Int_t manuId) const /// Returns the index of PCB (within a St345 slat) for a given manu number. /// Returns -1 if (detElemId,manuId) is incorrect - AliCodeTimerAuto("") + AliCodeTimerAuto("",) const AliMpSlat* slat = AliMpSegmentation::Instance()->GetSlatByElectronics(detElemId, manuId); @@ -675,7 +675,7 @@ AliMpDCSNamer::ManuId2Sector(Int_t detElemId, Int_t manuId) const { /// Return the DCS-sector number (within a St12 quadrant) for a given manu number. - AliCodeTimerAuto("") + AliCodeTimerAuto("",) const AliMpSector* sector = AliMpSegmentation::Instance()->GetSectorByElectronics(detElemId, manuId); diff --git a/MUON/mapping/AliMpDetElement.cxx b/MUON/mapping/AliMpDetElement.cxx index 7eae3c32eaa..a79697da4d2 100644 --- a/MUON/mapping/AliMpDetElement.cxx +++ b/MUON/mapping/AliMpDetElement.cxx @@ -274,7 +274,7 @@ AliMpDetElement::AddManu(Int_t manuId) if ( stationType == AliMp::kStationTrigger ) return; - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliDebug(1,Form("DE %4d Manu %4d",fId,manuId)); diff --git a/MUON/mapping/AliMpFastSegmentation.cxx b/MUON/mapping/AliMpFastSegmentation.cxx index 2bda879f1f6..6ccf28483c1 100644 --- a/MUON/mapping/AliMpFastSegmentation.cxx +++ b/MUON/mapping/AliMpFastSegmentation.cxx @@ -86,7 +86,7 @@ fPositionY(0.) { /// Ctor. We adopt vseg. - AliCodeTimerAuto(vseg->ClassName()); + AliCodeTimerAuto(vseg->ClassName(),); if (!vseg) { diff --git a/MUON/mapping/AliMpMotifMap.cxx b/MUON/mapping/AliMpMotifMap.cxx index 452aa2815eb..fd152854c88 100755 --- a/MUON/mapping/AliMpMotifMap.cxx +++ b/MUON/mapping/AliMpMotifMap.cxx @@ -215,7 +215,7 @@ AliMpMotifPosition* AliMpMotifMap::GetMotifPosition(UInt_t index) const { /// Return the motif position which is in the map on the index-th position - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); if ( index >= GetNofMotifPositions() ) { AliErrorStream() << "Index " << index << " outside limits." << endl; @@ -476,7 +476,7 @@ AliMpVMotif* AliMpMotifMap::FindMotif(const TString& motifID) const { /// Find the motif with the specified ID. - //AliCodeTimerAuto(""); + //AliCodeTimerAuto("",); return (AliMpVMotif*)fMotifs.GetValue(motifID); } @@ -492,7 +492,7 @@ AliMpVMotif* AliMpMotifMap::FindMotif(const TString& motifID, /// with the given motifTypeID and motifDimensions. /// Disagreement causes fatal error. - //AliCodeTimerAuto(""); + //AliCodeTimerAuto("",); AliMpVMotif* motif = FindMotif(motifID); @@ -530,7 +530,7 @@ AliMpMotifType* AliMpMotifMap::FindMotifType(const TString& motifTypeID) const { /// Find the motif type with the specified motif type ID. - //AliCodeTimerAuto(""); + //AliCodeTimerAuto("",); return (AliMpMotifType*)fMotifTypes.GetValue(motifTypeID); } @@ -541,7 +541,7 @@ AliMpMotifMap::FindMotifPosition(Int_t motifPositionID) const { /// Find the motif position with the specified motif position ID. - //AliCodeTimerAuto(""); + //AliCodeTimerAuto("",); return (AliMpMotifPosition*)fMotifPositions.GetValue(motifPositionID << 16); } diff --git a/MUON/mapping/macros/timeMapping.C b/MUON/mapping/macros/timeMapping.C index 8767154964d..29f212c15cc 100644 --- a/MUON/mapping/macros/timeMapping.C +++ b/MUON/mapping/macros/timeMapping.C @@ -111,7 +111,7 @@ void ByPosition(const AliMpVSegmentation* seg, Int_t detElemId, const TObjArray& Int_t stationId = StationId(detElemId); - AliCodeTimerAutoGeneral(Form("PadByPosition-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("PadByPosition-St%d",stationId),); TIter next(&pads); AliMpPad* pad; @@ -129,7 +129,7 @@ void ByIndices(const AliMpVSegmentation* seg, Int_t detElemId) Int_t stationId = StationId(detElemId); { - AliCodeTimerAutoGeneral(Form("PadByIndices-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("PadByIndices-St%d",stationId),); for ( Int_t ix = 0; ix < seg->MaxPadIndexX(); ++ix ) { @@ -141,7 +141,7 @@ void ByIndices(const AliMpVSegmentation* seg, Int_t detElemId) } { - AliCodeTimerAutoGeneral(Form("HasPadByIndices-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("HasPadByIndices-St%d",stationId),); for ( Int_t ix = 0; ix < seg->MaxPadIndexX(); ++ix ) { @@ -160,7 +160,7 @@ void ByLocation(const AliMpVSegmentation* seg, Int_t detElemId, Int_t manuId) Int_t stationId = StationId(detElemId); { - AliCodeTimerAutoGeneral(Form("PadByLocation-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("PadByLocation-St%d",stationId),); for ( Int_t manuChannel = 0; manuChannel < AliMpConstants::ManuNofChannels(); ++manuChannel ) { @@ -169,7 +169,7 @@ void ByLocation(const AliMpVSegmentation* seg, Int_t detElemId, Int_t manuId) } { - AliCodeTimerAutoGeneral(Form("HasPadByLocation-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("HasPadByLocation-St%d",stationId),); for ( Int_t manuChannel = 0; manuChannel < AliMpConstants::ManuNofChannels(); ++manuChannel ) { @@ -186,7 +186,7 @@ void timeMapping(Int_t nloop=1) { AliSysInfo::AddStamp("0"); - AliCodeTimerAutoGeneral("Load mapping"); + AliCodeTimerAutoGeneral("Load mapping",); AliMpCDB::LoadDDLStore2(); AliSysInfo::AddStamp("1"); AliCodeTimer::Instance()->Print(); diff --git a/MUON/mapping/macros/timeMapping2.C b/MUON/mapping/macros/timeMapping2.C index e02ea992113..63308b3c582 100644 --- a/MUON/mapping/macros/timeMapping2.C +++ b/MUON/mapping/macros/timeMapping2.C @@ -55,7 +55,7 @@ void ByPosition(const AliMpVSegmentation* seg, Int_t detElemId, Int_t stationId = StationId(detElemId); - AliCodeTimerAutoGeneral(Form("PadByPosition-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("PadByPosition-St%d",stationId),); std::vector::const_iterator it; for ( it = pads.begin(); it != pads.end(); it++ ) @@ -71,7 +71,7 @@ void ByIndices(const AliMpVSegmentation* seg, Int_t detElemId) Int_t stationId = StationId(detElemId); { - AliCodeTimerAutoGeneral(Form("PadByIndices-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("PadByIndices-St%d",stationId),); for ( Int_t ix = 0; ix < seg->MaxPadIndexX(); ++ix ) { @@ -83,7 +83,7 @@ void ByIndices(const AliMpVSegmentation* seg, Int_t detElemId) } { - AliCodeTimerAutoGeneral(Form("HasPadByIndices-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("HasPadByIndices-St%d",stationId),); for ( Int_t ix = 0; ix < seg->MaxPadIndexX(); ++ix ) { @@ -102,7 +102,7 @@ void ByLocation(const AliMpVSegmentation* seg, Int_t detElemId, Int_t manuId) Int_t stationId = StationId(detElemId); { - AliCodeTimerAutoGeneral(Form("PadByLocation-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("PadByLocation-St%d",stationId),); for ( Int_t manuChannel = 0; manuChannel < AliMpConstants::ManuNofChannels(); ++manuChannel ) { @@ -111,7 +111,7 @@ void ByLocation(const AliMpVSegmentation* seg, Int_t detElemId, Int_t manuId) } { - AliCodeTimerAutoGeneral(Form("HasPadByLocation-St%d",stationId)); + AliCodeTimerAutoGeneral(Form("HasPadByLocation-St%d",stationId),); for ( Int_t manuChannel = 0; manuChannel < AliMpConstants::ManuNofChannels(); ++manuChannel ) { @@ -128,7 +128,7 @@ void timeMapping2(Int_t nloop=1) { AliSysInfo::AddStamp("0"); - AliCodeTimerAutoGeneral("Load mapping"); + AliCodeTimerAutoGeneral("Load mapping",); AliMpCDB::LoadDDLStore2(); AliSysInfo::AddStamp("1"); AliCodeTimer::Instance()->Print(); diff --git a/STEER/AliCodeTimer.h b/STEER/AliCodeTimer.h index f79d62b689f..5bd9d3a875a 100644 --- a/STEER/AliCodeTimer.h +++ b/STEER/AliCodeTimer.h @@ -130,29 +130,29 @@ private: #define AliCodeTimerStartClass(message) AliCodeTimer::Instance()->Start(Class()->GetName(),FUNCTIONNAME(),message); #define AliCodeTimerStopClass(message) AliCodeTimer::Instance()->Stop(Class()->GetName(),FUNCTIONNAME(),message); -#define AliCodeTimerAutoClass(message) AliCodeTimer::AliAutoPtr aliCodeTimerAliAutoPtrVariable(Class()->GetName(),FUNCTIONNAME(),message); +#define AliCodeTimerAutoClass(message,counter) AliCodeTimer::AliAutoPtr aliCodeTimerAliAutoPtrVariable##counter(Class()->GetName(),FUNCTIONNAME(),message); #define AliCodeTimerStart(message) AliCodeTimer::Instance()->Start(ClassName(),FUNCTIONNAME(),message); #define AliCodeTimerStop(message) AliCodeTimer::Instance()->Stop(ClassName(),FUNCTIONNAME(),message); -#define AliCodeTimerAuto(message) AliCodeTimer::AliAutoPtr aliCodeTimerAliAutoPtrVariable(ClassName(),FUNCTIONNAME(),message); +#define AliCodeTimerAuto(message,counter) AliCodeTimer::AliAutoPtr aliCodeTimerAliAutoPtrVariable##counter(ClassName(),FUNCTIONNAME(),message); #define AliCodeTimerStartGeneral(message) AliCodeTimer::Instance()->Start("General",FUNCTIONNAME(),message); #define AliCodeTimerStopGeneral(message) AliCodeTimer::Instance()->Stop("General",FUNCTIONNAME(),message); -#define AliCodeTimerAutoGeneral(message) AliCodeTimer::AliAutoPtr aliCodeTimerAliAutoPtrVariable("General",FUNCTIONNAME(),message); +#define AliCodeTimerAutoGeneral(message,counter) AliCodeTimer::AliAutoPtr aliCodeTimerAliAutoPtrVariable##counter("General",FUNCTIONNAME(),message); #else #define AliCodeTimerStartClass(message) #define AliCodeTimerStopClass(message) -#define AliCodeTimerAutoClass(message) +#define AliCodeTimerAutoClass(message,counter) #define AliCodeTimerStart(message) #define AliCodeTimerStop(message) -#define AliCodeTimerAuto(message) +#define AliCodeTimerAuto(message,counter) #define AliCodeTimerStartGeneral(message) #define AliCodeTimerStopGeneral(message) -#define AliCodeTimerAutoGeneral(message) +#define AliCodeTimerAutoGeneral(message,counter) #endif diff --git a/STEER/AliQAManager.cxx b/STEER/AliQAManager.cxx index 3a54b32e7ff..dbab8e48259 100644 --- a/STEER/AliQAManager.cxx +++ b/STEER/AliQAManager.cxx @@ -1223,7 +1223,7 @@ void AliQAManager::RunOneEvent(AliRawReader * rawReader) //Runs all the QA data Maker for Raws only and on one event only (event loop done by calling method) if ( ! rawReader ) return ; - AliCodeTimerAuto("") ; + AliCodeTimerAuto("",) ; if (fTasks.Contains(Form("%d", AliQAv1::kRAWS))){ for (UInt_t iDet = 0; iDet < fgkNDetectors; iDet++) { if (!IsSelected(AliQAv1::GetDetName(iDet))) @@ -1250,7 +1250,7 @@ void AliQAManager::RunOneEvent(AliESDEvent *& esd) { //Runs all the QA data Maker for ESDs only and on one event only (event loop done by calling method) - AliCodeTimerAuto("") ; + AliCodeTimerAuto("",) ; if (fTasks.Contains(Form("%d", AliQAv1::kESDS))) { for (UInt_t iDet = 0; iDet < fgkNDetectors; iDet++) { if (!IsSelected(AliQAv1::GetDetName(iDet))) @@ -1278,7 +1278,7 @@ void AliQAManager::RunOneEventInOneDetector(Int_t det, TTree * tree) // Runs all the QA data Maker for ESDs only and on one event only (event loop done by calling method) TString test(tree->GetName()) ; - AliCodeTimerAuto("") ; + AliCodeTimerAuto("",) ; if (fTasks.Contains(Form("%d", AliQAv1::kRECPOINTS))) { if (IsSelected(AliQAv1::GetDetName(det))) { AliQADataMaker *qadm = GetQADataMaker(det); diff --git a/STEER/AliReconstruction.cxx b/STEER/AliReconstruction.cxx index 1cd2c549372..f13709fed9a 100644 --- a/STEER/AliReconstruction.cxx +++ b/STEER/AliReconstruction.cxx @@ -554,7 +554,7 @@ AliReconstruction::~AliReconstruction() void AliReconstruction::InitQA() { //Initialize the QA and start of cycle - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); if (fInitQACalled) return; fInitQACalled = kTRUE; @@ -618,7 +618,7 @@ void AliReconstruction::InitQA() void AliReconstruction::MergeQA(const char *fileName) { //Initialize the QA and start of cycle - AliCodeTimerAuto("") ; + AliCodeTimerAuto("",) ; AliQAManager::QAManager()->Merge(AliCDBManager::Instance()->GetRun(),fileName) ; AliSysInfo::AddStamp("MergeQA") ; } @@ -629,7 +629,7 @@ void AliReconstruction::InitCDB() // activate a default CDB storage // First check if we have any CDB storage set, because it is used // to retrieve the calibration and alignment constants - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); if (fInitCDBCalled) return; fInitCDBCalled = kTRUE; @@ -1131,7 +1131,7 @@ Bool_t AliReconstruction::InitGRP() { //_____________________________________________________________________________ Bool_t AliReconstruction::LoadCDB() { - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliCDBManager::Instance()->Get("GRP/CTP/Config"); @@ -1145,7 +1145,7 @@ Bool_t AliReconstruction::LoadCDB() //_____________________________________________________________________________ Bool_t AliReconstruction::LoadTriggerScalersCDB() { - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliCDBEntry* entry = AliCDBManager::Instance()->Get("GRP/CTP/Scalers"); @@ -1163,7 +1163,7 @@ Bool_t AliReconstruction::LoadTriggerScalersCDB() Bool_t AliReconstruction::Run(const char* input) { // Run Run Run - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); InitRun(input); if (GetAbort() != TSelector::kContinue) return kFALSE; @@ -1222,7 +1222,7 @@ Bool_t AliReconstruction::Run(const char* input) //_____________________________________________________________________________ void AliReconstruction::InitRawReader(const char* input) { - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); // Init raw-reader and // set the input in case of raw data @@ -1253,7 +1253,7 @@ void AliReconstruction::InitRun(const char* input) { // Initialization of raw-reader, // run number, CDB etc. - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliSysInfo::AddStamp("Start"); // Initialize raw-reader if any @@ -1281,7 +1281,7 @@ void AliReconstruction::Begin(TTree *) // going into the event loop // Should follow the TSelector convention // i.e. initialize only the object on the client side - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); AliReconstruction *reco = NULL; if (fInput) { @@ -1362,7 +1362,7 @@ void AliReconstruction::SlaveBegin(TTree*) // Initialization related to run-loader, // vertexer, trackers, recontructors // In proof mode it is executed on the slave - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TProofOutputFile *outProofFile = NULL; if (fInput) { @@ -1525,7 +1525,7 @@ Bool_t AliReconstruction::Process(Long64_t entry) { // run the reconstruction over a single entry // from the chain with raw data - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); TTree *currTree = fChain->GetTree(); AliRawVEvent *event = NULL; @@ -1556,7 +1556,7 @@ Bool_t AliReconstruction::ProcessEvent(Int_t iEvent) // run the reconstruction over a single event // The event loop is steered in Run method - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); if (iEvent >= fRunLoader->GetNumberOfEvents()) { fRunLoader->SetEventNumber(iEvent); @@ -1915,7 +1915,7 @@ void AliReconstruction::SlaveTerminate() // Finalize the run on the slave side // Called after the exit // from the event loop - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); if (fIsNewRunLoader) { // galice.root didn't exist fRunLoader->WriteHeader("OVERWRITE"); @@ -2033,7 +2033,7 @@ void AliReconstruction::Terminate() { // Create tags for the events in the ESD tree (the ESD tree is always present) // In case of empty events the tags will contain dummy values - AliCodeTimerAuto(""); + AliCodeTimerAuto("",); // Do not call the ESD tag creator in case of PROOF-based reconstruction if (!fInput) { @@ -2051,7 +2051,7 @@ Bool_t AliReconstruction::RunLocalEventReconstruction(const TString& detectors) // run the local reconstruction static Int_t eventNr=0; - AliCodeTimerAuto("") + AliCodeTimerAuto("",) TString detStr = detectors; for (Int_t iDet = 0; iDet < kNDetectors; iDet++) { @@ -2079,7 +2079,7 @@ Bool_t AliReconstruction::RunLocalEventReconstruction(const TString& detectors) AliInfo(Form("converting raw data digits into root objects for %s", fgkDetectorName[iDet])); // AliCodeTimerAuto(Form("converting raw data digits into root objects for %s", -// fgkDetectorName[iDet])); +// fgkDetectorName[iDet]),); loader->LoadDigits("update"); loader->CleanDigits(); loader->MakeDigitsContainer(); @@ -2090,7 +2090,7 @@ Bool_t AliReconstruction::RunLocalEventReconstruction(const TString& detectors) } // local reconstruction AliInfo(Form("running reconstruction for %s", fgkDetectorName[iDet])); - //AliCodeTimerAuto(Form("running reconstruction for %s", fgkDetectorName[iDet])); + //AliCodeTimerAuto(Form("running reconstruction for %s", fgkDetectorName[iDet]),); loader->LoadRecPoints("update"); loader->CleanRecPoints(); loader->MakeRecPointsContainer(); @@ -2133,7 +2133,7 @@ Bool_t AliReconstruction::RunSPDTrackleting(AliESDEvent*& esd) { // run the SPD trackleting (for SPD efficiency purpouses) - AliCodeTimerAuto("") + AliCodeTimerAuto("",) Double_t vtxPos[3] = {0, 0, 0}; Double_t vtxErr[3] = {0.0, 0.0, 0.0}; @@ -2183,7 +2183,7 @@ Bool_t AliReconstruction::RunVertexFinder(AliESDEvent*& esd) { // run the barrel tracking - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliVertexer *vertexer = CreateVertexer(); if (!vertexer) return kFALSE; @@ -2245,7 +2245,7 @@ Bool_t AliReconstruction::RunHLTTracking(AliESDEvent*& esd) { // run the HLT barrel tracking - AliCodeTimerAuto("") + AliCodeTimerAuto("",) if (!fRunLoader) { AliError("Missing runLoader!"); @@ -2301,7 +2301,7 @@ Bool_t AliReconstruction::RunMuonTracking(AliESDEvent*& esd) { // run the muon spectrometer tracking - AliCodeTimerAuto("") + AliCodeTimerAuto("",) if (!fRunLoader) { AliError("Missing runLoader!"); @@ -2352,7 +2352,7 @@ Bool_t AliReconstruction::RunTracking(AliESDEvent*& esd) { // run the barrel tracking static Int_t eventNr=0; - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliInfo("running tracking"); @@ -2537,7 +2537,7 @@ Bool_t AliReconstruction::FillESD(AliESDEvent*& esd, const TString& detectors) { // fill the event summary data - AliCodeTimerAuto("") + AliCodeTimerAuto("",) static Int_t eventNr=0; TString detStr = detectors; @@ -2594,7 +2594,7 @@ Bool_t AliReconstruction::FillTriggerESD(AliESDEvent*& esd) // stored in Trigger.root file and fills // the corresponding esd entries - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliInfo("Filling trigger information into the ESD"); @@ -3336,7 +3336,7 @@ Bool_t AliReconstruction::GetEventInfo() { // Fill the event info object // ... - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliCentralTrigger *aCTP = NULL; if (fRawReader) { diff --git a/STEER/AliSimulation.cxx b/STEER/AliSimulation.cxx index b6fff7bcde3..ff88c47bb3c 100644 --- a/STEER/AliSimulation.cxx +++ b/STEER/AliSimulation.cxx @@ -601,7 +601,7 @@ Bool_t AliSimulation::Run(Int_t nEvents) // run the generation, simulation and digitization - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliSysInfo::AddStamp("Start_Run"); // Load run number and seed from environmental vars @@ -794,7 +794,7 @@ Bool_t AliSimulation::RunLego(const char *setup, Int_t nc1, Float_t c1min, // run the generation and simulation - AliCodeTimerAuto("") + AliCodeTimerAuto("",) // initialize CDB storage and run number from external environment // (either CDB manager or AliSimulation setters) @@ -892,7 +892,7 @@ Bool_t AliSimulation::RunTrigger(const char* config, const char* detectors) { // run the trigger - AliCodeTimerAuto("") + AliCodeTimerAuto("",) // initialize CDB storage from external environment // (either CDB manager or AliSimulation setters), @@ -955,7 +955,7 @@ Bool_t AliSimulation::RunSimulation(Int_t nEvents) { // run the generation and simulation - AliCodeTimerAuto("") + AliCodeTimerAuto("",) // initialize CDB storage and run number from external environment // (either CDB manager or AliSimulation setters) @@ -1148,7 +1148,7 @@ Bool_t AliSimulation::RunSDigitization(const char* detectors) { // run the digitization and produce summable digits static Int_t eventNr=0; - AliCodeTimerAuto("") ; + AliCodeTimerAuto("",) ; // initialize CDB storage, run number, set CDB lock InitCDB(); @@ -1190,7 +1190,7 @@ Bool_t AliSimulation::RunDigitization(const char* detectors, { // run the digitization and produce digits from sdigits - AliCodeTimerAuto("") + AliCodeTimerAuto("",) // initialize CDB storage, run number, set CDB lock InitCDB(); @@ -1256,7 +1256,7 @@ Bool_t AliSimulation::RunHitsDigitization(const char* detectors) { // run the digitization and produce digits from hits - AliCodeTimerAuto("") + AliCodeTimerAuto("",) // initialize CDB storage, run number, set CDB lock InitCDB(); @@ -1303,7 +1303,7 @@ Bool_t AliSimulation::WriteRawData(const char* detectors, // 'selrawdata' flag can be used to enable writing of detectors raw data // accoring to the trigger cluster. - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliSysInfo::AddStamp("WriteRawData_Start"); TString detStr = detectors; @@ -1379,7 +1379,7 @@ Bool_t AliSimulation::WriteRawFiles(const char* detectors) { // convert the digits to raw data DDL files - AliCodeTimerAuto("") + AliCodeTimerAuto("",) AliRunLoader* runLoader = LoadRun("READ"); if (!runLoader) return kFALSE; @@ -1440,7 +1440,7 @@ Bool_t AliSimulation::ConvertRawFilesToDate(const char* dateFileName, // The second argument is not empty when the user decides to write // the detectors raw data according to the trigger cluster. - AliCodeTimerAuto("") + AliCodeTimerAuto("",) char* path = gSystem->Which(gSystem->Getenv("PATH"), "dateStream"); if (!path) { -- 2.43.0