00001 // Author : Samvel Khalatian (samvel at fnal dot gov) 00002 // Created: 07/15/07 00003 // License: GPL 00004 00005 #include "CalibTracker/SiStripRunSummary/interface/ClassID.h" 00006 00007 #include "CalibTracker/SiStripRunSummary/interface/TOBFlagTxt.h" 00008 #include "CalibTracker/SiStripRunSummary/interface/TOBFlagXML.h" 00009 00010 // --[ TOB FLAG TXT ]---------------------------------------------------------- 00011 // --[ PUBLIC ]-- 00012 TOBFlagTxt::TOBFlagTxt( const TOBFlagXML *poTOB_FLAGXML) 00013 : FlagTxt( *( dynamic_cast<const FlagXML *>( poTOB_FLAGXML) ) ) {} 00014 00015 // --[ PROTECTED ]-- 00016 Clonable *TOBFlagTxt::cloneXML() const { 00017 return new TOBFlagXML( this); 00018 } 00019 00020 ClassIDBase::ID TOBFlagTxt::getID() const { 00021 return ClassID<TOBFlagTxt>::get(); 00022 }