Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:43

0001 #include "DQM/SiStripMonitorClient/interface/SiStripConfigWriter.h"
0002 #include <memory>
0003 
0004 using namespace std;
0005 
0006 //
0007 // -- Constructor
0008 //
0009 SiStripConfigWriter::SiStripConfigWriter() {}
0010 //
0011 // -- Destructor
0012 //
0013 SiStripConfigWriter::~SiStripConfigWriter() {}
0014 //
0015 // -- Initialize XML
0016 //
0017 bool SiStripConfigWriter::init(std::string main) {
0018   assert(!"No longer implemented.");
0019   return true;
0020 }
0021 //
0022 // -- Add an Element to the top node
0023 //
0024 void SiStripConfigWriter::createElement(std::string tag) {}
0025 //
0026 // -- Add an Element to the top node
0027 //
0028 void SiStripConfigWriter::createElement(std::string tag, std::string name) {}
0029 //
0030 // -- Add a child to the last element
0031 //
0032 void SiStripConfigWriter::createChildElement(std::string tag, std::string name) {}
0033 //
0034 // -- Add a child to the last element
0035 //
0036 void SiStripConfigWriter::createChildElement(std::string tag,
0037                                              std::string name,
0038                                              std::string att_name,
0039                                              std::string att_val) {}
0040 //
0041 // -- Add a child to the last element
0042 //
0043 void SiStripConfigWriter::createChildElement(std::string tag,
0044                                              std::string name,
0045                                              std::string att_name1,
0046                                              std::string att_val1,
0047                                              std::string att_name2,
0048                                              std::string att_val2) {}
0049 //
0050 // -- Add a child to the last element
0051 //
0052 void SiStripConfigWriter::createChildElement(std::string tag,
0053                                              std::string name,
0054                                              std::string att_name1,
0055                                              std::string att_val1,
0056                                              std::string att_name2,
0057                                              std::string att_val2,
0058                                              std::string att_name3,
0059                                              std::string att_val3) {}
0060 //
0061 // -- Write to File
0062 //
0063 void SiStripConfigWriter::write(std::string fname) {}