/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/RegressionTest/test/testNew.cpp
73 строки
3 KB
Cms Build
Clang-Format
20 июн 2019, 23:56
20 июн 2019, 23:56
7faa7c0
Код
Авторство
О чём код?
#include <cstdlib> #include <iostream> #include "DetectorDescription/Core/interface/DDCompactView.h" #include "DetectorDescription/RegressionTest/src/DDCheck.h" #include "DetectorDescription/Parser/interface/DDLParser.h" #include "DetectorDescription/Parser/interface/FIPConfiguration.h" #include "FWCore/PluginManager/interface/PluginManager.h" #include "FWCore/PluginManager/interface/standard.h" #include "FWCore/Utilities/interface/Exception.h" int main(int argc, char* argv[]) { try { edmplugin::PluginManager::configure(edmplugin::standard::config()); std::cout << "Get a hold of aDDLParser." << std::endl; DDCompactView cpv; DDLParser myP(cpv); std::cout << "main:: initialize" << std::endl; std::cout << "======================" << std::endl << std::endl; std::cout << "Defining my Document Provider, using the default one provided" << std::endl; FIPConfiguration cf(cpv); std::cout << "Make sure the provider is ready... you don't need this, it's just necessary for the default one." << std::endl; int errNumcf; errNumcf = cf.readConfig("DetectorDescription/Parser/test/config1.xml"); if (!errNumcf) { std::cout << "about to call DumpFileList of configuration cf" << std::endl; cf.dumpFileList(); } else { std::cout << "error in ReadConfig" << std::endl; return -1; } // Parse the files provided by the DDLDocumentProvider above. std::cout << " parse all the files provided by the DDLDocumentProvider" << std::endl; myP.parse(cf); std::cout << "===================" << std::endl << std::endl; std::cout << " parse just one file THAT WAS ALREADY PARSED (materials.xml). We should get a WARNING message." << std::endl; myP.parseOneFile("DetectorDescription/Parser/test/materials.xml"); std::cout << "===================" << std::endl << std::endl; std::cout << " parse just one file that has not been parsed (specpars.xml). This should just go through." << std::endl; myP.parseOneFile("DetectorDescription/Parser/test/specpars.xml"); std::cout << "===================" << std::endl << std::endl; std::cout << " make a new provider and read some other configuration" << std::endl; FIPConfiguration cf2(cpv); cf2.readConfig("DetectorDescription/Parser/test/config2.xml"); myP.parse(cf2); std::cout << "Done Parsing" << std::endl; std::cout << "===================" << std::endl << std::endl; std::cout << std::endl << std::endl << "main::Start checking!" << std::endl << std::endl; DDCheckMaterials(std::cout); std::cout << "cleared DDCompactView. " << std::endl; return EXIT_SUCCESS; } catch (cms::Exception& e) { std::cout << "main::PROBLEM:" << std::endl << " " << e.what() << std::endl; } }