/************************************************************************** * 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 AliMpStringObjMap // ------------------------------------ // Helper class that substitutes map // which ALICE does not allow to use // // Author: Ivana Hrivnacova, IPN Orsay #include #include #include "AliMpStringObjMap.h" #include "AliLog.h" ClassImp(AliMpStringObjMap) //______________________________________________________________________________ AliMpStringObjMap::AliMpStringObjMap() : TObject(), fNofItems(0), fFirstArray(), fSecondArray() { /// Standard constructor fFirstArray.SetOwner(true); } //______________________________________________________________________________ AliMpStringObjMap::AliMpStringObjMap(const AliMpStringObjMap& rhs) : TObject(rhs) { /// Protected copy constructor AliFatal("Copy constructor is not implemented."); } //______________________________________________________________________________ AliMpStringObjMap::~AliMpStringObjMap() { /// Destructor fFirstArray.Delete(); } //______________________________________________________________________________ AliMpStringObjMap& AliMpStringObjMap::operator = (const AliMpStringObjMap& rhs) { /// Protected assignement operator // check assignement to self if (this == &rhs) return *this; AliFatal("Assignment operator is not implemented."); return *this; } // // public methods // //______________________________________________________________________________ Bool_t AliMpStringObjMap::Add(const TString& first, TObject* second) { /// Add map element if first not yet present TObject* second2 = Get(first); if ( second2 ) { AliError(Form("%s is already present in the map", first.Data())); return false; } fFirstArray.Add(new TObjString(first)); fSecondArray.Add(second); fNofItems++; return true; } //______________________________________________________________________________ TObject* AliMpStringObjMap::Get(const TString& first) const { /// Find the element with specified key (first) for (Int_t i=0; iGetString() == first ) return fSecondArray.At(i); } return 0; } //______________________________________________________________________________ Int_t AliMpStringObjMap::GetNofItems() const { /// Return the number of elements return fNofItems; } //______________________________________________________________________________ void AliMpStringObjMap::Clear(Option_t* /*option*/) { /// Delete the elements fNofItems = 0; fFirstArray.Delete(); fSecondArray.Delete(); } //______________________________________________________________________________ void AliMpStringObjMap::Print(const char* /*option*/) const { /// Print the map elements for (Int_t i=0; iGetString() << " " << setw(5) << fSecondArray.At(i) << endl; } } //______________________________________________________________________________ void AliMpStringObjMap::Print(const TString& key, ofstream& out) const { // Prints the map elements for (Int_t i=0; iGetString() << " " << setw(5) << fSecondArray.At(i) << endl; } }