1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef GEOMETRY_FWRECO_GEOMETRY_H
#define GEOMETRY_FWRECO_GEOMETRY_H
#include "Fireworks/Core/interface/FWRecoGeom.h"
#include "TObjArray.h"
#include <string>
class FWRecoGeometry {
public:
FWRecoGeometry(void) { idToName.reserve(260000); }
virtual ~FWRecoGeometry(void) {}
FWRecoGeom::InfoMap idToName;
TObjArray extraDet;
std::string trackerTopologyXML;
};
#endif // GEOMETRY_FWRECO_GEOMETRY_H
|