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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
/*
________________________________________________________________________
MixBoostEvtVtxGenerator
Smear vertex according to the Beta function on the transverse plane
and a Gaussian on the z axis. It allows the beam to have a crossing
angle (slopes dxdz and dydz).
Based on GaussEvtVtxGenerator
implemented by Francisco Yumiceva (yumiceva@fnal.gov)
FERMILAB
2006
________________________________________________________________________
*/
//lingshan: add beta for z-axis boost
//#include "IOMC/EventVertexGenerators/interface/BetafuncEvtVtxGenerator.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Utilities/interface/Exception.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Framework/interface/one/EDProducer.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "SimDataFormats/CrossingFrame/interface/MixCollection.h"
#include "SimDataFormats/GeneratorProducts/interface/HepMCProduct.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "DataFormats/VertexReco/interface/VertexFwd.h"
#include <CLHEP/Units/SystemOfUnits.h>
#include <CLHEP/Units/GlobalPhysicalConstants.h>
//#include "CLHEP/Vector/ThreeVector.h"
#include "HepMC/SimpleVector.h"
#include "TMatrixD.h"
#include <iostream>
using namespace edm;
using namespace std;
using namespace CLHEP;
class RandGaussQ;
class FourVector;
class MixBoostEvtVtxGenerator : public edm::one::EDProducer<> {
public:
MixBoostEvtVtxGenerator(const edm::ParameterSet& p);
/** Copy constructor */
MixBoostEvtVtxGenerator(const MixBoostEvtVtxGenerator& p) = delete;
/** Copy assignment operator */
MixBoostEvtVtxGenerator& operator=(const MixBoostEvtVtxGenerator& rhs) = delete;
~MixBoostEvtVtxGenerator() override;
/// return a new event vertex
void produce(edm::Event&, const edm::EventSetup&) override;
virtual TMatrixD* GetInvLorentzBoost();
virtual HepMC::FourVector* getVertex(edm::Event&);
virtual HepMC::FourVector* getRecVertex(edm::Event&);
/// set resolution in Z in cm
void sigmaZ(double s = 1.0);
/// set mean in X in cm
void X0(double m = 0) { fX0 = m; }
/// set mean in Y in cm
void Y0(double m = 0) { fY0 = m; }
/// set mean in Z in cm
void Z0(double m = 0) { fZ0 = m; }
/// set half crossing angle
void Phi(double m = 0) { phi_ = m; }
/// angle between crossing plane and horizontal plane
void Alpha(double m = 0) { alpha_ = m; }
void Beta(double m = 0) { beta_ = m; }
/// set beta_star
void betastar(double m = 0) { fbetastar = m; }
/// emittance (no the normalized)
void emittance(double m = 0) { femittance = m; }
/// beta function
double BetaFunction(double z, double z0);
private:
double alpha_, phi_;
//TMatrixD boost_;
double beta_;
double fX0, fY0, fZ0;
double fSigmaZ;
//double fdxdz, fdydz;
double fbetastar, femittance;
double falpha;
HepMC::FourVector* fVertex;
TMatrixD* boost_;
double fTimeOffset;
const edm::EDGetTokenT<reco::VertexCollection> vtxLabel;
const edm::EDGetTokenT<HepMCProduct> signalLabel;
const edm::EDGetTokenT<CrossingFrame<HepMCProduct> > mixLabel;
const bool useRecVertex;
std::vector<double> vtxOffset;
};
MixBoostEvtVtxGenerator::MixBoostEvtVtxGenerator(const edm::ParameterSet& pset)
: fVertex(nullptr),
boost_(nullptr),
fTimeOffset(0),
vtxLabel(mayConsume<reco::VertexCollection>(pset.getParameter<edm::InputTag>("vtxLabel"))),
signalLabel(consumes<HepMCProduct>(pset.getParameter<edm::InputTag>("signalLabel"))),
mixLabel(consumes<CrossingFrame<HepMCProduct> >(pset.getParameter<edm::InputTag>("mixLabel"))),
useRecVertex(pset.exists("useRecVertex") ? pset.getParameter<bool>("useRecVertex") : false) {
beta_ = pset.getParameter<double>("Beta");
alpha_ = 0;
phi_ = 0;
if (pset.exists("Alpha")) {
alpha_ = pset.getParameter<double>("Alpha") * radian;
phi_ = pset.getParameter<double>("Phi") * radian;
}
vtxOffset.resize(3);
if (pset.exists("vtxOffset"))
vtxOffset = pset.getParameter<std::vector<double> >("vtxOffset");
produces<edm::HepMCProduct>();
}
MixBoostEvtVtxGenerator::~MixBoostEvtVtxGenerator() {
if (fVertex != nullptr)
delete fVertex;
if (boost_ != nullptr)
delete boost_;
}
double MixBoostEvtVtxGenerator::BetaFunction(double z, double z0) {
return sqrt(femittance * (fbetastar + (((z - z0) * (z - z0)) / fbetastar)));
}
void MixBoostEvtVtxGenerator::sigmaZ(double s) {
if (s >= 0) {
fSigmaZ = s;
} else {
throw cms::Exception("LogicError") << "Error in MixBoostEvtVtxGenerator::sigmaZ: "
<< "Illegal resolution in Z (negative)";
}
}
TMatrixD* MixBoostEvtVtxGenerator::GetInvLorentzBoost() {
//alpha_ = 0;
//phi_ = 142.e-6;
// if (boost_ != 0 ) return boost_;
//boost_.ResizeTo(4,4);
//boost_ = new TMatrixD(4,4);
TMatrixD tmpboost(4, 4);
TMatrixD tmpboostZ(4, 4);
TMatrixD tmpboostXYZ(4, 4);
//if ( (alpha_ == 0) && (phi_==0) ) { boost_->Zero(); return boost_; }
// Lorentz boost to frame where the collision is head-on
// phi is the half crossing angle in the plane ZS
// alpha is the angle to the S axis from the X axis in the XY plane
tmpboost(0, 0) = 1. / cos(phi_);
tmpboost(0, 1) = -cos(alpha_) * sin(phi_);
tmpboost(0, 2) = -tan(phi_) * sin(phi_);
tmpboost(0, 3) = -sin(alpha_) * sin(phi_);
tmpboost(1, 0) = -cos(alpha_) * tan(phi_);
tmpboost(1, 1) = 1.;
tmpboost(1, 2) = cos(alpha_) * tan(phi_);
tmpboost(1, 3) = 0.;
tmpboost(2, 0) = 0.;
tmpboost(2, 1) = -cos(alpha_) * sin(phi_);
tmpboost(2, 2) = cos(phi_);
tmpboost(2, 3) = -sin(alpha_) * sin(phi_);
tmpboost(3, 0) = -sin(alpha_) * tan(phi_);
tmpboost(3, 1) = 0.;
tmpboost(3, 2) = sin(alpha_) * tan(phi_);
tmpboost(3, 3) = 1.;
//cout<<"beta "<<beta_;
double gama = 1.0 / sqrt(1 - beta_ * beta_);
tmpboostZ(0, 0) = gama;
tmpboostZ(0, 1) = 0.;
tmpboostZ(0, 2) = -1.0 * beta_ * gama;
tmpboostZ(0, 3) = 0.;
tmpboostZ(1, 0) = 0.;
tmpboostZ(1, 1) = 1.;
tmpboostZ(1, 2) = 0.;
tmpboostZ(1, 3) = 0.;
tmpboostZ(2, 0) = -1.0 * beta_ * gama;
tmpboostZ(2, 1) = 0.;
tmpboostZ(2, 2) = gama;
tmpboostZ(2, 3) = 0.;
tmpboostZ(3, 0) = 0.;
tmpboostZ(3, 1) = 0.;
tmpboostZ(3, 2) = 0.;
tmpboostZ(3, 3) = 1.;
tmpboostXYZ = tmpboostZ * tmpboost;
tmpboostXYZ.Invert();
//cout<<"Boosting with beta : "<<beta_<<endl;
boost_ = new TMatrixD(tmpboostXYZ);
boost_->Print();
return boost_;
}
HepMC::FourVector* MixBoostEvtVtxGenerator::getVertex(Event& evt) {
const HepMC::GenEvent* inev = nullptr;
const edm::Handle<CrossingFrame<HepMCProduct> >& cf = evt.getHandle(mixLabel);
MixCollection<HepMCProduct> mix(cf.product());
const HepMCProduct& bkg = mix.getObject(1);
if (!(bkg.isVtxGenApplied())) {
throw cms::Exception("MatchVtx") << "Input background does not have smeared vertex!" << endl;
} else {
inev = bkg.GetEvent();
}
HepMC::GenVertex* genvtx = inev->signal_process_vertex();
if (!genvtx) {
cout << "No Signal Process Vertex!" << endl;
HepMC::GenEvent::particle_const_iterator pt = inev->particles_begin();
HepMC::GenEvent::particle_const_iterator ptend = inev->particles_end();
while (!genvtx || (genvtx->particles_in_size() == 1 && pt != ptend)) {
if (!genvtx)
cout << "No Gen Vertex!" << endl;
if (pt == ptend)
cout << "End reached!" << endl;
genvtx = (*pt)->production_vertex();
++pt;
}
}
double aX, aY, aZ, aT;
aX = genvtx->position().x();
aY = genvtx->position().y();
aZ = genvtx->position().z();
aT = genvtx->position().t();
if (!fVertex)
fVertex = new HepMC::FourVector();
fVertex->set(aX, aY, aZ, aT);
return fVertex;
}
HepMC::FourVector* MixBoostEvtVtxGenerator::getRecVertex(Event& evt) {
const edm::Handle<reco::VertexCollection>& input = evt.getHandle(vtxLabel);
double aX, aY, aZ;
aX = input->begin()->position().x() + vtxOffset[0];
aY = input->begin()->position().y() + vtxOffset[1];
aZ = input->begin()->position().z() + vtxOffset[2];
if (!fVertex)
fVertex = new HepMC::FourVector();
fVertex->set(10.0 * aX, 10.0 * aY, 10.0 * aZ, 0.0); // HepMC positions in mm (RECO in cm)
return fVertex;
}
void MixBoostEvtVtxGenerator::produce(Event& evt, const EventSetup&) {
const edm::Handle<HepMCProduct>& HepUnsmearedMCEvt = evt.getHandle(signalLabel);
// Copy the HepMC::GenEvent
HepMC::GenEvent* genevt = new HepMC::GenEvent(*HepUnsmearedMCEvt->GetEvent());
std::unique_ptr<edm::HepMCProduct> HepMCEvt(new edm::HepMCProduct(genevt));
// generate new vertex & apply the shift
//
HepMCEvt->boostToLab(GetInvLorentzBoost(), "vertex");
HepMCEvt->boostToLab(GetInvLorentzBoost(), "momentum");
HepMCEvt->applyVtxGen(useRecVertex ? getRecVertex(evt) : getVertex(evt));
evt.put(std::move(HepMCEvt));
return;
}
#include "FWCore/Framework/interface/MakerMacros.h"
DEFINE_FWK_MODULE(MixBoostEvtVtxGenerator);
|