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
76
77
78
79
80
|
// -*- C++ -*-
//
// Package: FakeAlignmentProducer
// Class: FakeAlignmentProducer
//
/**\class FakeAlignmentProducer FakeAlignmentProducer.h Alignment/FakeAlignmentProducer/interface/FakeAlignmentProducer.h
Description: Producer of fake alignment data for all geometries (currently: Tracker, DT and CSC)
(but will not provide IOV as the FakeAlignmentSource)
Implementation:
The alignment objects are filled with dummy/empty data,
reconstruction Geometry should notice that and not pass to GeometryAligner.
*/
//
// Original Author: Frederic Ronga
// Created: Fri Feb 9 19:24:38 CET 2007
// $Id: FakeAlignmentProducer.cc,v 1.6 2008/06/26 10:00:35 flucke Exp $
//
//
// System
#include <memory>
// Framework
#include "FWCore/Framework/interface/ModuleFactory.h"
#include "FWCore/Framework/interface/ESProducer.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
// Alignment
#include "CondFormats/Alignment/interface/Alignments.h"
#include "CondFormats/Alignment/interface/AlignmentErrorsExtended.h"
#include "CondFormats/AlignmentRecord/interface/TrackerAlignmentRcd.h"
#include "CondFormats/AlignmentRecord/interface/DTAlignmentRcd.h"
#include "CondFormats/AlignmentRecord/interface/CSCAlignmentRcd.h"
#include "CondFormats/AlignmentRecord/interface/TrackerAlignmentErrorExtendedRcd.h"
#include "CondFormats/AlignmentRecord/interface/DTAlignmentErrorExtendedRcd.h"
#include "CondFormats/AlignmentRecord/interface/CSCAlignmentErrorExtendedRcd.h"
#include "CondFormats/AlignmentRecord/interface/GlobalPositionRcd.h"
class FakeAlignmentProducer : public edm::ESProducer {
public:
FakeAlignmentProducer(const edm::ParameterSet&);
~FakeAlignmentProducer() override {}
std::unique_ptr<Alignments> produceTkAli(const TrackerAlignmentRcd&) { return std::make_unique<Alignments>(); }
std::unique_ptr<Alignments> produceDTAli(const DTAlignmentRcd&) { return std::make_unique<Alignments>(); }
std::unique_ptr<Alignments> produceCSCAli(const CSCAlignmentRcd&) { return std::make_unique<Alignments>(); }
std::unique_ptr<Alignments> produceGlobals(const GlobalPositionRcd&) { return std::make_unique<Alignments>(); }
std::unique_ptr<AlignmentErrorsExtended> produceTkAliErr(const TrackerAlignmentErrorExtendedRcd&) {
return std::make_unique<AlignmentErrorsExtended>();
}
std::unique_ptr<AlignmentErrorsExtended> produceDTAliErr(const DTAlignmentErrorExtendedRcd&) {
return std::make_unique<AlignmentErrorsExtended>();
}
std::unique_ptr<AlignmentErrorsExtended> produceCSCAliErr(const CSCAlignmentErrorExtendedRcd&) {
return std::make_unique<AlignmentErrorsExtended>();
}
};
FakeAlignmentProducer::FakeAlignmentProducer(const edm::ParameterSet& iConfig) {
// This 'appendToDataLabel' is used by the framework to distinguish providers
// with different settings and to request a special one by e.g.
// iSetup.get<TrackerDigiGeometryRecord>().get("theLabel", tkGeomHandle);
edm::LogInfo("Alignments") << "@SUB=FakeAlignmentProducer"
<< "Providing data with label '" << iConfig.getParameter<std::string>("appendToDataLabel")
<< "'.";
setWhatProduced(this, &FakeAlignmentProducer::produceTkAli);
setWhatProduced(this, &FakeAlignmentProducer::produceTkAliErr);
setWhatProduced(this, &FakeAlignmentProducer::produceDTAli);
setWhatProduced(this, &FakeAlignmentProducer::produceDTAliErr);
setWhatProduced(this, &FakeAlignmentProducer::produceCSCAli);
setWhatProduced(this, &FakeAlignmentProducer::produceCSCAliErr);
setWhatProduced(this, &FakeAlignmentProducer::produceGlobals);
}
//define this as a plug-in
DEFINE_FWK_EVENTSETUP_MODULE(FakeAlignmentProducer);
|