From 99c136e1c3e77da0cd9cfccb149742d67c36aaa2 Mon Sep 17 00:00:00 2001 From: fca Date: Wed, 21 Oct 2009 09:59:23 +0000 Subject: [PATCH] Fixing previous change, empty argument macros not supported everywhere --- MUON/AliMUONCDB.cxx | 22 ++++---- MUON/AliMUONCalibrationData.cxx | 2 +- MUON/AliMUONClusterFinderMLEM.cxx | 10 ++-- MUON/AliMUONClusterFinderPeakCOG.cxx | 8 +-- MUON/AliMUONClusterFinderPeakFit.cxx | 8 +-- MUON/AliMUONContourHandler.cxx | 6 +-- MUON/AliMUONContourMaker.cxx | 16 +++--- MUON/AliMUONContourMakerTest.cxx | 2 +- MUON/AliMUONDigitMaker.cxx | 4 +- MUON/AliMUONDigitizerV3.cxx | 4 +- MUON/AliMUONGainEventGenerator.cxx | 4 +- MUON/AliMUONLegacyClusterServer.cxx | 2 +- MUON/AliMUONManuContourMaker.cxx | 6 +-- MUON/AliMUONPadStatusMaker.cxx | 12 ++--- MUON/AliMUONPadStatusMapMaker.cxx | 6 +-- MUON/AliMUONPainterHelper.cxx | 6 +-- MUON/AliMUONPedestalEventGenerator.cxx | 8 +-- MUON/AliMUONPreClusterFinder.cxx | 2 +- MUON/AliMUONPreClusterFinderV3.cxx | 4 +- MUON/AliMUONQADataMakerRec.cxx | 20 ++++---- MUON/AliMUONRawWriter.cxx | 8 +-- MUON/AliMUONReconstructor.cxx | 18 +++---- MUON/AliMUONSimpleClusterServer.cxx | 2 +- MUON/AliMUONTracker.cxx | 4 +- MUON/AliMUONTrackerData.cxx | 14 +++--- MUON/AliMUONTrackerDataMaker.cxx | 4 +- MUON/AliMUONTriggerTrackToTrackerClusters.cxx | 2 +- MUON/AliMUONVTrackReconstructor.cxx | 8 +-- MUON/mapping/AliMpDCSNamer.cxx | 4 +- MUON/mapping/AliMpDetElement.cxx | 2 +- MUON/mapping/AliMpFastSegmentation.cxx | 2 +- MUON/mapping/AliMpMotifMap.cxx | 10 ++-- STEER/AliQAManager.cxx | 6 +-- STEER/AliReconstruction.cxx | 50 +++++++++---------- STEER/AliSimulation.cxx | 20 ++++---- 35 files changed, 153 insertions(+), 153 deletions(-) diff --git a/MUON/AliMUONCDB.cxx b/MUON/AliMUONCDB.cxx index 72c572999c6..82962145d50 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("",0); Int_t nchannels(0); Int_t nmanus(0); @@ -539,7 +539,7 @@ AliMUONCDB::MakeRejectListStore(Bool_t defaultValues) { /// Create a reject list - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); AliMUONRejectList* rl = new AliMUONRejectList; @@ -559,7 +559,7 @@ AliMUONCDB::MakeOccupancyMapStore(AliMUONVStore& occupancyMapStore, Bool_t defau { /// Create an occupancy map. - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); 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("",0); 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("",0); 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("",0); 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("",0); 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("",0); return gtm.ReadData(AliMpFiles::GlobalTriggerBoardMapping()); } @@ -837,7 +837,7 @@ AliMUONCDB::MakeTriggerLUT(const char* file) const { /// Make a triggerlut object, from a file. - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); 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("",0); 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("",0); AliInfo("Generating NeighbourStore. This will take a while. Please be patient."); diff --git a/MUON/AliMUONCalibrationData.cxx b/MUON/AliMUONCalibrationData.cxx index 64ce1efe3ab..cc79b496cbb 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),0); AliCDBManager* man = AliCDBManager::Instance(); diff --git a/MUON/AliMUONClusterFinderMLEM.cxx b/MUON/AliMUONClusterFinderMLEM.cxx index 57f5c2b5714..d8631828732 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("",0) for ( Int_t i = 0; i < 2; ++i ) { @@ -147,7 +147,7 @@ AliMUONCluster* AliMUONClusterFinderMLEM::NextCluster() { /// Return next cluster -// AliCodeTimerAuto("",) +// AliCodeTimerAuto("",0) // 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("",0) 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("",0) // 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("",0) Int_t nPix = fPixArray->GetLast()+1; diff --git a/MUON/AliMUONClusterFinderPeakCOG.cxx b/MUON/AliMUONClusterFinderPeakCOG.cxx index 54139c179b4..6b7d1543aad 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("",0) for ( Int_t i = 0; i < 2; ++i ) { @@ -135,7 +135,7 @@ AliMUONCluster* AliMUONClusterFinderPeakCOG::NextCluster() { /// Return next cluster -// AliCodeTimerAuto("",) +// AliCodeTimerAuto("",0) // 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("",0) 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("",0) // 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 02685a6c1ce..4ab7ccb3f07 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("",0) for ( Int_t i = 0; i < 2; ++i ) { @@ -227,7 +227,7 @@ AliMUONCluster* AliMUONClusterFinderPeakFit::NextCluster() { /// Return next cluster -// AliCodeTimerAuto("",) +// AliCodeTimerAuto("",0) // 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("",0) 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("",0) // 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 271f1ff81bf..1b9e0afecd5 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("",0); 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("",0); // 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("",0); AliMUONGeometryTransformer transformer; Bool_t ok = transformer.LoadGeometryData("transform.dat"); diff --git a/MUON/AliMUONContourMaker.cxx b/MUON/AliMUONContourMaker.cxx index 95956444ec0..534f454d49b 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("",0); if ( polygons.IsEmpty() ) return 0x0; // protection against user error... @@ -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("",0); 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("",0); 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("",0); 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("",0); 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("",0); 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("",0); 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("",0); TObjArray points; // array of AliMUONPointWithRef points.SetOwner(kTRUE); diff --git a/MUON/AliMUONContourMakerTest.cxx b/MUON/AliMUONContourMakerTest.cxx index 369c704e9b9..1da3cd18651 100644 --- a/MUON/AliMUONContourMakerTest.cxx +++ b/MUON/AliMUONContourMakerTest.cxx @@ -119,7 +119,7 @@ AliMUONContourMakerTest::Exec(const Option_t* opt) AliCodeTimer::Instance()->Reset(); - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); TString sopt(opt); diff --git a/MUON/AliMUONDigitMaker.cxx b/MUON/AliMUONDigitMaker.cxx index b97c1240f02..505da303170 100644 --- a/MUON/AliMUONDigitMaker.cxx +++ b/MUON/AliMUONDigitMaker.cxx @@ -219,7 +219,7 @@ AliMUONDigitMaker::ReadTrackerDDL(AliRawReader* rawReader) AliDebug(1,""); - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); // 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("",0); Int_t detElemId; diff --git a/MUON/AliMUONDigitizerV3.cxx b/MUON/AliMUONDigitizerV3.cxx index 19f8fba94a7..3a20cf95e76 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("",0) 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("",0) for ( Int_t i = 0; i < AliMUONConstants::NTrackingCh(); ++i ) { diff --git a/MUON/AliMUONGainEventGenerator.cxx b/MUON/AliMUONGainEventGenerator.cxx index 5bd50f9e5c1..88e4f1c62bd 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),0); 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),0); TIter next(fSourceGains->CreateIterator()); AliMUONVStore* generatedPedestals = fSourcePedestals->Create(); diff --git a/MUON/AliMUONLegacyClusterServer.cxx b/MUON/AliMUONLegacyClusterServer.cxx index 562af6b4882..5e9ca644a88 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),0); if ( fBypassSt4 && ( chamberId == 6 || chamberId == 7 ) ) { diff --git a/MUON/AliMUONManuContourMaker.cxx b/MUON/AliMUONManuContourMaker.cxx index 4b2d0345178..15832df8bc8 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("",0); 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("",0); TString mpName(NameIt(motifPosition)); @@ -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("",0); TObjArray* manuContours = new TObjArray; diff --git a/MUON/AliMUONPadStatusMaker.cxx b/MUON/AliMUONPadStatusMaker.cxx index bc695d29add..f0fee0f561a 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("",0) 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("",0) 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("",0) 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",0); 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("",0) 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("",0); AliMUONLogger log(1064008); diff --git a/MUON/AliMUONPadStatusMapMaker.cxx b/MUON/AliMUONPadStatusMapMaker.cxx index b14eeb962ba..8c6785f76f3 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",0); 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)",0) AliMUONVCalibParam* param = new AliMUONCalibParamNI(1,AliMpConstants::ManuNofChannels(), detElemId,manuId,-1); @@ -264,7 +264,7 @@ AliMUONPadStatusMapMaker::RefreshRejectProbabilities() if ( !fRejectProbabilities ) return; - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); fRejectList->Clear(); diff --git a/MUON/AliMUONPainterHelper.cxx b/MUON/AliMUONPainterHelper.cxx index 2b856aa7ee5..5bc1a46b45d 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("",0); fPainterMatrices = new TObjArray; fPainterMatrices->SetOwner(kFALSE); @@ -304,7 +304,7 @@ AliMUONPainterHelper::Instance() if (fgInstance) return fgInstance; - AliCodeTimerAutoClass("",); + AliCodeTimerAutoClass("",0); 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("",0) AliDebug(1,contour->GetName()); AliMUONContourHandler* ch = fReal; if ( explodedView ) diff --git a/MUON/AliMUONPedestalEventGenerator.cxx b/MUON/AliMUONPedestalEventGenerator.cxx index d6c7958b1dc..8cda95d7d1d 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("",0) AliInfo("Converting raw to date"); @@ -246,7 +246,7 @@ AliMUONPedestalEventGenerator::Exec(Option_t*) { /// Main steering method - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) if (!fPedestals) { @@ -318,7 +318,7 @@ AliMUONPedestalEventGenerator::Digits2Raw(Int_t event) { /// Converts digits (from MUON.Digits.root file) to Raw DDL ascii files. - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) 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("",0) digitStore.Clear(); diff --git a/MUON/AliMUONPreClusterFinder.cxx b/MUON/AliMUONPreClusterFinder.cxx index 81c00d7d97e..f803f29d85c 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",0) // Start a new cluster Int_t id = fClusters.GetLast()+1; diff --git a/MUON/AliMUONPreClusterFinderV3.cxx b/MUON/AliMUONPreClusterFinderV3.cxx index bfb209680c3..e904f6bfdc7 100644 --- a/MUON/AliMUONPreClusterFinderV3.cxx +++ b/MUON/AliMUONPreClusterFinderV3.cxx @@ -252,7 +252,7 @@ AliMUONPreClusterFinderV3::MakeClusters() { /// Associate (proto)preclusters to form (pre)clusters -// AliCodeTimerAuto("",) +// AliCodeTimerAuto("",0) 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),0) while ( fPads[cathode]->GetLast() > 0 ) { diff --git a/MUON/AliMUONQADataMakerRec.cxx b/MUON/AliMUONQADataMakerRec.cxx index 089ca542b96..566147f1e2a 100644 --- a/MUON/AliMUONQADataMakerRec.cxx +++ b/MUON/AliMUONQADataMakerRec.cxx @@ -203,7 +203,7 @@ void AliMUONQADataMakerRec::Ctor() { /// Init some members - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); fDigitStore = AliMUONVDigitStore::Create("AliMUONDigitStoreV1"); fDigitMaker = new AliMUONDigitMaker(kTRUE); } @@ -254,7 +254,7 @@ AliMUONQADataMakerRec::~AliMUONQADataMakerRec() AliDebug(AliQAv1::GetQADebugLevel(),""); - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); 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("",0); for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) { @@ -600,7 +600,7 @@ void AliMUONQADataMakerRec::InitRaws() { /// create Raws histograms in Raws subdir - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); 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("",0); InitRecPointsTrigger(); InitRecPointsTracker(); @@ -718,7 +718,7 @@ void AliMUONQADataMakerRec::InitRecPointsTracker() const Bool_t expert = kTRUE ; const Bool_t image = kTRUE ; - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); TH1I *h1I; TH1F *h1F; @@ -1263,7 +1263,7 @@ void AliMUONQADataMakerRec::MakeRecPointsTracker(TTree* clustersTree) // then we have clusters in TreeR, so let's take that opportunity // to QA them... - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); // Do nothing in case of calibration event if ( GetRecoParam()->GetEventSpecie() == AliRecoParam::kCalib ) return; @@ -1312,7 +1312,7 @@ void AliMUONQADataMakerRec::MakeRecPointsTrigger(TTree* clustersTree) { /// makes data from trigger response - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); // Fired pads info fDigitStore->Clear(); @@ -1365,7 +1365,7 @@ void AliMUONQADataMakerRec::MakeESDs(AliESDEvent* esd) { /// make QA data from ESDs - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); // 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("",0); AliMUONCalibrationData calibrationData(AliCDBManager::Instance()->GetRun()); diff --git a/MUON/AliMUONRawWriter.cxx b/MUON/AliMUONRawWriter.cxx index 1a48584be06..14773a3036c 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("",0) Int_t idDDL; Char_t name[255]; @@ -223,7 +223,7 @@ AliMUONRawWriter::Digits2BusPatchMap(const AliMUONVDigitStore& digitStore, { /// Create bus patch structures corresponding to digits in the store - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) 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("",0) 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("",0) if (fHeader == 0x0) { AliError("Raw data header must be set"); diff --git a/MUON/AliMUONReconstructor.cxx b/MUON/AliMUONReconstructor.cxx index d8fe5d6dcab..729b132d46e 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()),0) fDigitCalibrator->Calibrate(digitStore); } @@ -220,7 +220,7 @@ void AliMUONReconstructor::ConvertDigits(AliRawReader* rawReader, TTree* digitsTree) const { /// convert raw data into a digit tree - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) 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("",0) TString option = GetOption(); @@ -277,7 +277,7 @@ AliMUONReconstructor::CreateTriggerCircuit() const /// Return (and create if necessary) the trigger circuit object if (fTriggerCircuit) return; - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) fTriggerCircuit = new AliMUONTriggerCircuit(fTransformer); @@ -324,7 +324,7 @@ AliMUONReconstructor::CreateClusterFinder(const char* clusterFinderType) { /// Create a given cluster finder instance - AliCodeTimerAutoGeneral("",) + AliCodeTimerAutoGeneral("",0) AliMUONVClusterFinder* clusterFinder(0x0); @@ -396,7 +396,7 @@ AliMUONReconstructor::CreateClusterServer() const if ( fClusterServer ) return; - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); AliMUONVClusterFinder* clusterFinder = CreateClusterFinder(GetRecoParam()->GetClusteringMode()); @@ -413,7 +413,7 @@ AliMUONReconstructor::CreateCalibrator() const { /// Create the calibrator - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) Int_t runNumber = AliCDBManager::Instance()->GetRun(); @@ -488,7 +488,7 @@ AliMUONReconstructor::FillTreeR(AliMUONVTriggerStore* triggerStore, { /// Write the trigger and cluster information into TreeR - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) 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("",0) AliDebug(1,""); diff --git a/MUON/AliMUONSimpleClusterServer.cxx b/MUON/AliMUONSimpleClusterServer.cxx index ad0e8e9a1e0..238c88a499e 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),0); if ( fTriggerTrackStore && chamberId >= 6 ) { diff --git a/MUON/AliMUONTracker.cxx b/MUON/AliMUONTracker.cxx index cee4276bc72..5a41cd31b8c 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("",0) if (!fTrackReco) { @@ -255,7 +255,7 @@ void AliMUONTracker::FillESD(const AliMUONVTrackStore& trackStore, AliESDEvent* { /// Fill the ESD from the trackStore AliDebug(1,""); - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) // get ITS vertex Double_t vertex[3] = {0., 0., 0.}; diff --git a/MUON/AliMUONTrackerData.cxx b/MUON/AliMUONTrackerData.cxx index 5cd32c07d11..aebd708fa46 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(),0); if ( !replace) { @@ -741,7 +741,7 @@ AliMUONTrackerData::CreateBusPatchParam(Int_t busPatchId) const { /// Create storage for one bus patch - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); AliMpBusPatch* bp = AliMpDDLStore::Instance()->GetBusPatch(busPatchId); @@ -811,7 +811,7 @@ AliMUONTrackerData::CreateChamberParam(Int_t chamberId) const { /// Create storage for one chamber - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); 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("",0); 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("",0); 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("",0); 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("",0); AliMpDCSNamer namer("TRACKER"); diff --git a/MUON/AliMUONTrackerDataMaker.cxx b/MUON/AliMUONTrackerDataMaker.cxx index 9c927c05333..ef5bbd28247 100644 --- a/MUON/AliMUONTrackerDataMaker.cxx +++ b/MUON/AliMUONTrackerDataMaker.cxx @@ -294,7 +294,7 @@ AliMUONTrackerDataMaker::NextEvent() return kFALSE; } - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); 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("",0); AliMUONRawStreamTrackerHP stream(fRawReader); diff --git a/MUON/AliMUONTriggerTrackToTrackerClusters.cxx b/MUON/AliMUONTriggerTrackToTrackerClusters.cxx index 65ed12a062e..07856425e74 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),0); TIter next(fTriggerTrackStore->CreateIterator()); diff --git a/MUON/AliMUONVTrackReconstructor.cxx b/MUON/AliMUONVTrackReconstructor.cxx index 51e6c39a8bc..963b1c0b294 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("",0); // 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("",0); 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("",0); 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("",0); AliMUONGlobalTrigger* globalTrigger = triggerStore.Global(); diff --git a/MUON/mapping/AliMpDCSNamer.cxx b/MUON/mapping/AliMpDCSNamer.cxx index 2dc3b4a2b97..a8554c81886 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("",0) 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("",0) const AliMpSector* sector = AliMpSegmentation::Instance()->GetSectorByElectronics(detElemId, manuId); diff --git a/MUON/mapping/AliMpDetElement.cxx b/MUON/mapping/AliMpDetElement.cxx index a79697da4d2..7a66c6983bd 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("",0) AliDebug(1,Form("DE %4d Manu %4d",fId,manuId)); diff --git a/MUON/mapping/AliMpFastSegmentation.cxx b/MUON/mapping/AliMpFastSegmentation.cxx index 6ccf28483c1..6379ec74d7c 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(),0); if (!vseg) { diff --git a/MUON/mapping/AliMpMotifMap.cxx b/MUON/mapping/AliMpMotifMap.cxx index fd152854c88..90ad743b9c1 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("",0); 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("",0); 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("",0); 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("",0); 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("",0); return (AliMpMotifPosition*)fMotifPositions.GetValue(motifPositionID << 16); } diff --git a/STEER/AliQAManager.cxx b/STEER/AliQAManager.cxx index dbab8e48259..9a0e08a7810 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("",0) ; 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("",0) ; 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("",0) ; 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 f13709fed9a..167c7331929 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("",0); 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("",0) ; 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("",0); if (fInitCDBCalled) return; fInitCDBCalled = kTRUE; @@ -1131,7 +1131,7 @@ Bool_t AliReconstruction::InitGRP() { //_____________________________________________________________________________ Bool_t AliReconstruction::LoadCDB() { - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); AliCDBManager::Instance()->Get("GRP/CTP/Config"); @@ -1145,7 +1145,7 @@ Bool_t AliReconstruction::LoadCDB() //_____________________________________________________________________________ Bool_t AliReconstruction::LoadTriggerScalersCDB() { - AliCodeTimerAuto("",); + AliCodeTimerAuto("",0); 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("",0); 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("",0); // 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("",0); 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("",0); 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("",0); 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("",0); 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("",0); 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("",0); 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("",0); // 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("",0) 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]),0); 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]),0); 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("",0) 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("",0) AliVertexer *vertexer = CreateVertexer(); if (!vertexer) return kFALSE; @@ -2245,7 +2245,7 @@ Bool_t AliReconstruction::RunHLTTracking(AliESDEvent*& esd) { // run the HLT barrel tracking - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) if (!fRunLoader) { AliError("Missing runLoader!"); @@ -2301,7 +2301,7 @@ Bool_t AliReconstruction::RunMuonTracking(AliESDEvent*& esd) { // run the muon spectrometer tracking - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) 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("",0) AliInfo("running tracking"); @@ -2537,7 +2537,7 @@ Bool_t AliReconstruction::FillESD(AliESDEvent*& esd, const TString& detectors) { // fill the event summary data - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) 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("",0) AliInfo("Filling trigger information into the ESD"); @@ -3336,7 +3336,7 @@ Bool_t AliReconstruction::GetEventInfo() { // Fill the event info object // ... - AliCodeTimerAuto("",) + AliCodeTimerAuto("",0) AliCentralTrigger *aCTP = NULL; if (fRawReader) { diff --git a/STEER/AliSimulation.cxx b/STEER/AliSimulation.cxx index ff88c47bb3c..310e99a6f4d 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("",0) 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("",0) // 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("",0) // 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("",0) // 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("",0) ; // 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("",0) // 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("",0) // 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("",0) 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("",0) 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("",0) char* path = gSystem->Which(gSystem->Getenv("PATH"), "dateStream"); if (!path) { -- 2.43.0