Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:34

0001 #ifndef DDD_DDCheck_h
0002 #define DDD_DDCheck_h
0003 
0004 #include <iostream>
0005 #include <string>
0006 #include <utility>
0007 #include <vector>
0008 
0009 #include "DetectorDescription/Core/interface/DDCompactView.h"
0010 #include "DetectorDescription/Core/interface/DDName.h"
0011 
0012 class DDCompactView;
0013 class DDName;
0014 
0015 // some self-consistency checks
0016 bool DDCheck(std::ostream&);
0017 bool DDCheck(const DDCompactView& cpv, std::ostream&);
0018 bool DDCheckMaterials(std::ostream&, std::vector<std::pair<std::string, std::string> >* = nullptr);
0019 
0020 #endif