]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Replaced with AliCodeTimer (Laurent)
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 2 Jul 2007 16:40:10 +0000 (16:40 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 2 Jul 2007 16:40:10 +0000 (16:40 +0000)
MUON/AliMUONStopwatchGroup.cxx [deleted file]
MUON/AliMUONStopwatchGroup.h [deleted file]
MUON/AliMUONStopwatchGroupElement.h [deleted file]

diff --git a/MUON/AliMUONStopwatchGroup.cxx b/MUON/AliMUONStopwatchGroup.cxx
deleted file mode 100644 (file)
index cd75884..0000000
+++ /dev/null
@@ -1,255 +0,0 @@
-/**************************************************************************
-* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
-*                                                                        *
-* Author: The ALICE Off-line Project.                                    *
-* Contributors are mentioned in the code where appropriate.              *
-*                                                                        *
-* Permission to use, copy, modify and distribute this software and its   *
-* documentation strictly for non-commercial purposes is hereby granted   *
-* without fee, provided that the above copyright notice appears in all   *
-* copies and that both the copyright notice and this permission notice   *
-* appear in the supporting documentation. The authors make no claims     *
-* about the suitability of this software for any purpose. It is          *
-* provided "as is" without express or implied warranty.                  *
-**************************************************************************/
-
-// $Id$
-
-/// \class AliMUONStopwatchGroup
-///
-/// A class to group timers by name
-/// Typically used to time out some methods, e.g.
-///
-/// AliMUONStopwatchGroup timers;
-///
-/// void Class::Method()
-/// {
-///    timers.Start("Class","Method");
-///    ...
-///    timers.Stop();
-/// }
-///
-/// and later on :
-///
-/// timers.Print();
-///
-///
-/// \author Laurent Aphecetche, Subatech
-
-#include "AliMUONStopwatchGroup.h"
-
-#include "AliLog.h"
-#include <TMap.h>
-#include <TObjString.h>
-#include <TStopwatch.h>
-#include <Riostream.h>
-
-/// \cond CLASSIMP
-ClassImp(AliMUONStopwatchGroup)
-/// \endcond
-
-//_____________________________________________________________________________
-AliMUONStopwatchGroup::AliMUONStopwatchGroup() : TObject(), fTimers(new TMap)
-{
-  /// Ctor
-  fTimers->SetOwner(kTRUE);
-}
-
-//_____________________________________________________________________________
-AliMUONStopwatchGroup::AliMUONStopwatchGroup(const AliMUONStopwatchGroup& other) : TObject(), fTimers(new TMap)
-{
-  /// Copy ctor
-  other.CopyTo(*this);
-}
-
-//_____________________________________________________________________________
-AliMUONStopwatchGroup& 
-AliMUONStopwatchGroup::operator=(const AliMUONStopwatchGroup& other)
-{
-  /// Assignment
-  Reset();
-  other.CopyTo(*this);
-  return *this;
-}
-
-//_____________________________________________________________________________
-AliMUONStopwatchGroup::~AliMUONStopwatchGroup()
-{
-  /// Dtor
-  Reset();
-  delete fTimers;
-}
-
-//_____________________________________________________________________________
-void AliMUONStopwatchGroup::Continue(const char* detector, const char* method)
-{
-  /// Resume a previously stop timer
-  TStopwatch* t = Stopwatch(detector,method);
-  if (t)
-  {
-    t->Continue();
-  }
-  else
-  {
-    AliError(Form("No timer for %s/%s",detector,method));
-  }
-}
-
-//_____________________________________________________________________________
-void
-AliMUONStopwatchGroup::CopyTo(AliMUONStopwatchGroup& other) const
-{
-  /// Copy this to other
-  TIter next(fTimers);
-  TObjString* detector;
-  
-  while ( ( detector = static_cast<TObjString*>(next()) ) )
-  {
-    TMap* m = static_cast<TMap*>(fTimers->GetValue(detector->String().Data()));
-    TMap* otherm = new TMap;
-    otherm->SetOwner(kTRUE);
-    other.fTimers->Add(new TObjString(detector->String()),otherm);
-    TIter next2(m);
-    TObjString* method;
-    while ( ( method = static_cast<TObjString*>(next2()) ) )
-    {
-      TStopwatch* timer = static_cast<TStopwatch*>(m->GetValue(method->String().Data()));
-      otherm->Add(new TObjString(method->String()),new TStopwatch(*timer));
-    }
-  }
-}
-
-//_____________________________________________________________________________
-Double_t AliMUONStopwatchGroup::CpuTime(const char* detector, const char* method) const
-{
-  /// Return cpu time for a given timer
-  TStopwatch* t = Stopwatch(detector,method);
-  if (t)
-  {
-    return t->CpuTime();
-  }
-  else
-  {
-    return 0;
-  }
-}
-
-//_____________________________________________________________________________
-TMap*
-AliMUONStopwatchGroup::Map(const char* detector) const
-{
-  /// Return the map for a given "detector"
-  return static_cast<TMap*>(fTimers->GetValue(detector));
-}
-
-//_____________________________________________________________________________
-void AliMUONStopwatchGroup::Print(Option_t* /*opt*/) const
-{
-  /// Print all the timers we hold
-  TIter next(fTimers);
-  TObjString* detector;
-  
-  while ( ( detector = static_cast<TObjString*>(next()) ) )
-  {
-    cout << detector->String() << endl;
-    TMap* m = static_cast<TMap*>(fTimers->GetValue(detector->String().Data()));
-    TIter next2(m);
-    TObjString* method;
-    while ( ( method = static_cast<TObjString*>(next2()) ) )
-    {
-      TStopwatch* timer = static_cast<TStopwatch*>(m->GetValue(method->String().Data()));
-      cout << Form("    %s R:%.2fs C:%.2fs (%d slices)",
-                   method->String().Data(),timer->RealTime(),
-                   timer->CpuTime(),timer->Counter()-1) << endl;
-    }
-  }
-}
-
-//_____________________________________________________________________________
-Double_t 
-AliMUONStopwatchGroup::RealTime(const char* detector, const char* method) const
-{
-  /// Return real time of a given time
-  TStopwatch* t = Stopwatch(detector,method);
-  if (t)
-  {
-    return t->RealTime();
-  }
-  else
-  {
-    return 0;
-  }
-}
-
-//_____________________________________________________________________________
-void
-AliMUONStopwatchGroup::Reset()
-{
-  /// Reset
-  TIter next(fTimers);
-  TObjString* detector;
-  
-  while ( ( detector = static_cast<TObjString*>(next()) ) ) 
-  {
-    TMap* m = static_cast<TMap*>(fTimers->GetValue(detector->String().Data()));
-    m->DeleteAll();
-  }
-  
-  fTimers->DeleteAll();
-}
-
-//_____________________________________________________________________________
-void 
-AliMUONStopwatchGroup::Start(const char* detector, const char* method)
-{
-  /// Start a given time
-  TStopwatch* t = Stopwatch(detector,method);
-  if (!t)
-  {
-    TMap* m = Map(detector);
-    if (!m)
-    {
-      m = new TMap;
-      m->SetOwner(kTRUE);
-      fTimers->Add(new TObjString(detector),m);
-    }      
-    t = new TStopwatch;
-    t->Start(kTRUE);
-    t->Stop();
-    m->Add(new TObjString(method),t);
-  }
-  t->Start(kFALSE);
-}
-
-//_____________________________________________________________________________
-void 
-AliMUONStopwatchGroup::Stop(const char* detector, const char* method)
-{
-  /// Stop a given timer
-  TStopwatch* t = Stopwatch(detector,method);
-  if (!t)
-  {
-    AliError(Form("No timer for %s/%s",detector,method));
-  }
-  else
-  {
-    t->Stop();
-  }
-}
-
-//_____________________________________________________________________________
-TStopwatch* 
-AliMUONStopwatchGroup::Stopwatch(const char* detector, const char* method) const
-{
-  /// Return the internal TStopwatch for a given timer
-  TMap* m = Map(detector);
-  if (m)
-  {
-    return static_cast<TStopwatch*>(m->GetValue(method));
-  }
-  else
-  {
-    return 0x0;
-  }
-}
-
diff --git a/MUON/AliMUONStopwatchGroup.h b/MUON/AliMUONStopwatchGroup.h
deleted file mode 100644 (file)
index fb45694..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-#ifndef ALIMUONSTOPWATCHGROUP_H
-#define ALIMUONSTOPWATCHGROUP_H
-
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
-* See cxx source for full Copyright notice                               */
-
-// $Id$
-
-/// \ingroup base
-/// \class AliMUONStopwatchGroup
-/// \brief A class to group timers by name
-/// 
-// Author Laurent Aphecetche
-
-#ifndef ROOT_TObject
-#  include "TObject.h"
-#endif
-
-class TStopwatch;
-class TMap;
-
-class AliMUONStopwatchGroup : public TObject
-{
-public:
-  
-  AliMUONStopwatchGroup();
-  AliMUONStopwatchGroup(const AliMUONStopwatchGroup& rhs);
-  AliMUONStopwatchGroup& operator=(const AliMUONStopwatchGroup& rhs);
-
-  virtual ~AliMUONStopwatchGroup();
-
-  void Continue(const char* detector, const char* method);
-
-  Double_t CpuTime(const char* detector, const char* method) const;
-  
-  void Print(Option_t* opt="") const;
-  
-  Double_t RealTime(const char* detector, const char* method) const;
-  
-  void Reset();
-  
-  void Start(const char* detector, const char* method);
-
-  void Stop(const char* detector, const char* method);
-    
-public:  
-  
-  TMap* Map(const char* detector) const;
-  
-  TStopwatch* Stopwatch(const char* detector, const char* method) const;
-  
-  void CopyTo(AliMUONStopwatchGroup& timers) const;
-  
-private:
-    
-  TMap* fTimers; //< internal timers (map from TObjString to TStopwatch*)
-  
-  ClassDef(AliMUONStopwatchGroup,1) // A timer holder
-};
-
-
-#endif
diff --git a/MUON/AliMUONStopwatchGroupElement.h b/MUON/AliMUONStopwatchGroupElement.h
deleted file mode 100644 (file)
index cced4b3..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-#ifndef ALIMUONSTOPWATCHGROUPELEMENT_H
-#define ALIMUONSTOPWATCHGROUPELEMENT_H
-
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
-* See cxx source for full Copyright notice                               */
-
-// $Id$
-
-/// \ingroup base
-/// \class AliMUONStopwatchGroupElement
-/// \brief A class to group timers by name
-/// 
-// Author Laurent Aphecetche
-
-#ifndef ALIMUONSTOPWATCHGROUP_H
-#  include "AliMUONStopwatchGroup.h"
-#endif
-
-#ifndef ROOT_TString
-#  include "TString.h"
-#endif
-
-class AliMUONStopwatchGroupElement
-{
-public:
-  AliMUONStopwatchGroupElement(AliMUONStopwatchGroup* group, const char* a, const char *b)
-  : fGroup(group), fA(a), fB(b)
-  { group->Start(a,b); }
-  AliMUONStopwatchGroupElement(const AliMUONStopwatchGroupElement& rhs) : fGroup(0),fA(),fB()
-  { fGroup = rhs.fGroup; fA = rhs.fA; fB=rhs.fB ; }
-  AliMUONStopwatchGroupElement& operator=(const AliMUONStopwatchGroupElement& rhs)
-  { if ( this != &rhs ) { fGroup = rhs.fGroup; fA = rhs.fA; fB=rhs.fB ; } return *this; }
-  
-  ~AliMUONStopwatchGroupElement()
-  { fGroup->Stop(fA.Data(),fB.Data()); }
-  
-private:
-  AliMUONStopwatchGroup* fGroup; // the group for which we're just a proxy
-  TString fA; // first parameter
-  TString fB; // second parameter
-};
-
-#endif