1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#ifndef RPCGeometry_RPCGeometryParsFromDD_H
#define RPCGeometry_RPCGeometryParsFromDD_H
/* \class RPCGeometryParsFromDD
* Build the RPCGeometry from the DDD and DD4hep description
*
* DD4hep part added to the original old file (DD version) made by M. Maggi (INFN Bari)
* Author: Sergio Lo Meo (sergio.lo.meo@cern.ch)
* Created: Mon, 09 Nov 2020
*
*/
#include <string>
#include <map>
#include <list>
class DDCompactView;
class DDFilteredView;
namespace cms { // DD4hep
class DDFilteredView;
class DDCompactView;
} // namespace cms
class RPCDetId;
class RPCRoll;
class MuonGeometryConstants;
class RecoIdealGeometry;
class RPCGeometryParsFromDD {
public:
RPCGeometryParsFromDD();
~RPCGeometryParsFromDD();
// DD
void build(const DDCompactView* cview, const MuonGeometryConstants& muonConstants, RecoIdealGeometry& rgeo);
// DD4hep
void build(const cms::DDCompactView* cview, const MuonGeometryConstants& muonConstants, RecoIdealGeometry& rgeo);
private:
// DD
void buildGeometry(DDFilteredView& fview, const MuonGeometryConstants& muonConstants, RecoIdealGeometry& rgeo);
// DD4hep
void buildGeometry(cms::DDFilteredView& fview, const MuonGeometryConstants& muonConstants, RecoIdealGeometry& rgeo);
};
#endif
|