1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef DDD_DDCheck_h
#define DDD_DDCheck_h
#include <iostream>
#include <string>
#include <utility>
#include <vector>
#include "DetectorDescription/Core/interface/DDCompactView.h"
#include "DetectorDescription/Core/interface/DDName.h"
class DDCompactView;
class DDName;
// some self-consistency checks
bool DDCheck(std::ostream&);
bool DDCheck(const DDCompactView& cpv, std::ostream&);
bool DDCheckMaterials(std::ostream&, std::vector<std::pair<std::string, std::string> >* = nullptr);
#endif
|