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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// -*- C++ -*-
//
// Package: MuonAlignment
// Class : MuonAlignmentInputMethod
//
// Implementation:
// <Notes on implementation>
//
// Original Author: Jim Pivarski
// Created: Thu Mar 6 14:25:07 CST 2008
// $Id: MuonAlignmentInputMethod.cc,v 1.3 2009/01/19 11:07:37 flucke Exp $
//
// system include files
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/ESTransientHandle.h"
// user include files
#include "Alignment/MuonAlignment/interface/MuonAlignmentInputMethod.h"
#include "Geometry/Records/interface/MuonNumberingRecord.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "Geometry/Records/interface/MuonGeometryRecord.h"
//
// constants, enums and typedefs
//
//
// static data member definitions
//
//
// constructors and destructor
//
MuonAlignmentInputMethod::MuonAlignmentInputMethod() {}
MuonAlignmentInputMethod::MuonAlignmentInputMethod(const DTGeometry* dtGeometry,
const CSCGeometry* cscGeometry,
const GEMGeometry* gemGeometry)
: dtGeometry_(dtGeometry), cscGeometry_(cscGeometry), gemGeometry_(gemGeometry) {}
// MuonAlignmentInputMethod::MuonAlignmentInputMethod(const MuonAlignmentInputMethod& rhs)
// {
// // do actual copying here;
// }
MuonAlignmentInputMethod::~MuonAlignmentInputMethod() {}
//
// assignment operators
//
// const MuonAlignmentInputMethod& MuonAlignmentInputMethod::operator=(const MuonAlignmentInputMethod& rhs)
// {
// //An exception safe implementation is
// MuonAlignmentInputMethod temp(rhs);
// swap(rhs);
//
// return *this;
// }
//
// member functions
//
AlignableMuon* MuonAlignmentInputMethod::newAlignableMuon() const {
return new AlignableMuon(&*dtGeometry_, &*cscGeometry_, &*gemGeometry_);
}
//
// const member functions
//
//
// static member functions
//
|