/************************************************************************* * * Copyright(c) 1998-2008, 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. * * **************************************************************************/ //////////////////////////////////////////////////////////////////////////// // // // The SAX XML file handler used in the TOFda // // // // Author: // // Chiara Zampolli (Chiara.Zampolli@cern.ch) // // Roberto Preghenella (R+) (preghenella@bo.infn.it) // // // //////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include "AliLog.h" #include "AliTOFDaConfigHandler.h" ClassImp(AliTOFDaConfigHandler) //_____________________________________________________________________________ AliTOFDaConfigHandler::AliTOFDaConfigHandler() :TObject(), fMeanMultiplicity(0), fMaxHits(0) { // // AliTOFDaConfigHandler default constructor // } //_____________________________________________________________________________ AliTOFDaConfigHandler::AliTOFDaConfigHandler(const AliTOFDaConfigHandler &sh) :TObject(sh), fMeanMultiplicity(sh.fMeanMultiplicity), fMaxHits(sh.fMaxHits) { // // AliTOFDaConfigHandler copy constructor // } //_____________________________________________________________________________ AliTOFDaConfigHandler &AliTOFDaConfigHandler::operator=(const AliTOFDaConfigHandler &sh) { // // Assignment operator // if (&sh == this) return *this; new (this) AliTOFDaConfigHandler(sh); return *this; } //_____________________________________________________________________________ AliTOFDaConfigHandler::~AliTOFDaConfigHandler() { // // AliTOFDaConfigHandler destructor // } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnStartDocument() { // if something should happen right at the beginning of the // XML document, this must happen here AliInfo("Reading XML file for TOF da Config"); } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnEndDocument() { // if something should happen at the end of the XML document // this must be done here } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnStartElement(const char *name, const TList *attributes) { // when a new XML element is found, it is processed here // set the current system if necessary TString strName(name); AliDebug(2,Form("name = %s",strName.Data())); TXMLAttr* attr; TIter next(attributes); while ((attr = (TXMLAttr*) next())) { TString attrName = attr->GetName(); AliDebug(2,Form("Name = %s",attrName.Data())); if (attrName == "MeanMultiplicity"){ fMeanMultiplicity = ((TString)(attr->GetValue())).Atoi(); } if (attrName == "MaxHits"){ fMaxHits = ((TString)(attr->GetValue())).Atoi(); } } AliDebug(2,Form("MeanMultiplicity = %d",fMeanMultiplicity)); AliDebug(2,Form("MaxHits = %d",fMaxHits)); return; } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnEndElement(const char *name) { // do everything that needs to be done when an end tag of an element is found TString strName(name); AliDebug(2,Form("name = %s",strName.Data())); } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnCharacters(const char *characters) { // copy the text content of an XML element //fContent = characters; TString strCharacters(characters); AliDebug(2,Form("characters = %s",strCharacters.Data())); } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnComment(const char* /*text*/) { // comments within the XML file are ignored } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnWarning(const char *text) { // process warnings here AliInfo(Form("Warning: %s",text)); } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnError(const char *text) { // process errors here AliError(Form("Error: %s",text)); } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnFatalError(const char *text) { // process fatal errors here AliFatal(Form("Fatal error: %s",text)); } //_____________________________________________________________________________ void AliTOFDaConfigHandler::OnCdataBlock(const char* /*text*/, Int_t /*len*/) { // process character data blocks here // not implemented and should not be used here }