12 Suffix(conf.getParameter<
std::
string>(
"Suffix")),
13 trackingParticles_token_(
18 produces<std::vector<unsigned>>(
Prefix +
"multi" +
Suffix);
20 produces<std::vector<float>>(
Prefix +
"charge" +
Suffix);
21 produces<std::vector<float>>(
Prefix +
"momentum" +
Suffix);
23 produces<std::vector<double>>(
Prefix +
"theta" +
Suffix);
26 produces<std::vector<double>>(
Prefix +
"qoverp" +
Suffix);
41 auto multi = std::make_unique<std::vector<unsigned>>(
size, 0);
42 auto type = std::make_unique<std::vector<int>>(
size, 0);
43 auto charge = std::make_unique<std::vector<float>>(
size, 0);
44 auto momentum = std::make_unique<std::vector<float>>(
size, -1);
45 auto pt = std::make_unique<std::vector<float>>(
size, -1);
46 auto theta = std::make_unique<std::vector<double>>(
size, -1000);
47 auto phi = std::make_unique<std::vector<double>>(
size, -1000);
48 auto eta = std::make_unique<std::vector<double>>(
size, -1000);
49 auto dxy = std::make_unique<std::vector<double>>(
size, -1000);
50 auto dsz = std::make_unique<std::vector<double>>(
size, -1000);
51 auto qoverp = std::make_unique<std::vector<double>>(
size, -1000);
52 auto vx = std::make_unique<std::vector<double>>(
size, -1000);
53 auto vy = std::make_unique<std::vector<double>>(
size, -1000);
54 auto vz = std::make_unique<std::vector<double>>(
size, -1000);
69 momentum->at(
i) = tparticle->
p();
70 pt->at(
i) = tparticle->
pt();
74 qoverp->at(
i) = tparticle->
charge() / tparticle->
p();
const edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator > associator_token_
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
double p() const
Magnitude of momentum vector. Note this is taken from the first SimTrack only.
int findTrackIndex(const edm::Handle< edm::View< reco::Track > > &h, const reco::Track *t)
ShallowSimTracksProducer(const edm::ParameterSet &)
std::tuple< layerClusterToCaloParticle, caloParticleToLayerCluster > association
double eta() const
Momentum pseudorapidity. Note this is taken from the first SimTrack only.
const LorentzVector & position() const
const TrackingVertexRef & parentVertex() const
auto const & tracks
cannot be loose
double phi() const
Momentum azimuthal angle. Note this is taken from the first SimTrack only.
T const * get() const
Returns C++ pointer to the item.
Monte Carlo truth information used for tracking validation.
std::vector< TrackingParticle > TrackingParticleCollection
double theta() const
Momentum polar angle. Note this is taken from the first SimTrack only.
double pt() const
Transverse momentum. Note this is taken from the first SimTrack only.
const edm::EDGetTokenT< edm::View< reco::Track > > tracks_token_
Geom::Theta< T > theta() const
const edm::EDGetTokenT< TrackingParticleCollection > trackingParticles_token_
float charge() const
Electric charge. Note this is taken from the first SimTrack only.