CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalTrackingGeometryBuilder.cc
Go to the documentation of this file.
1 
8 
14 
15 
16 #include <iostream>
17 #include <iomanip>
18 
19 GlobalTrackingGeometryBuilder::GlobalTrackingGeometryBuilder() : myName("GlobalTrackingGeometryBuilder"){}
20 
21 
23 
24 
26  const DTGeometry* dt,
27  const CSCGeometry* csc,
28  const RPCGeometry* rpc,
29  const GEMGeometry* gem){
30 
31  // DO NOT CHANGE THE ORDER OF THE GEOMETRIES !!!!!!!
32 
33  std::vector<const TrackingGeometry*> tkGeometries;
34 
35  tkGeometries.push_back(tk);
36  tkGeometries.push_back(dt);
37  tkGeometries.push_back(csc);
38  tkGeometries.push_back(rpc);
39  tkGeometries.push_back(gem);
40 
41 
42  return new GlobalTrackingGeometry(tkGeometries);
43 }
44 
virtual ~GlobalTrackingGeometryBuilder()
Destructor.
float dt
Definition: AMPTWrapper.h:126
GlobalTrackingGeometry * build(const TrackerGeometry *tk, const DTGeometry *dt, const CSCGeometry *csc, const RPCGeometry *rpc, const GEMGeometry *gem)
Build the geometry.