/************************************************************************* * * 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) // // // //////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include "AliLog.h" #include "AliTOFDaConfigHandler.h" ClassImp(AliTOFDaConfigHandler) //_____________________________________________________________________________ AliTOFDaConfigHandler::AliTOFDaConfigHandler() :TObject(), fDebugFlag(0), fT0Flag(0) { // // AliTOFDaConfigHandler default constructor // } //_____________________________________________________________________________ AliTOFDaConfigHandler::AliTOFDaConfigHandler(const AliTOFDaConfigHandler &sh) :TObject(sh), fDebugFlag(sh.fDebugFlag), fT0Flag(sh.fT0Flag) { // // 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 == "DebugFlag"){ fDebugFlag = ((TString)(attr->GetValue())).Atoi(); } if (attrName == "t0Flag"){ TString t0Flag = (TString)(attr->GetValue()); if (t0Flag == "ON" || t0Flag == "On" || t0Flag == "on"){ fT0Flag = 1; } else if (t0Flag == "OFF" || t0Flag == "Off"|| t0Flag == "off"){ fT0Flag = 0; } else { AliWarning("Invalid T0 Flag. Keeping t0 off"); fT0Flag = 0; } } } AliDebug(2,Form("Debug Flag = %i",fDebugFlag)); AliDebug(2,Form("T0 Flag = %i",fT0Flag)); 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 }