File indexing completed on 2024-04-06 12:04:31
0001 #include "DataFormats/L1TCorrelator/interface/TkHTMiss.h"
0002
0003 using namespace l1t;
0004
0005 TkHTMiss::TkHTMiss() {}
0006
0007 TkHTMiss::TkHTMiss(const LorentzVector& p4,
0008 double etTotal,
0009 const edm::RefProd<TkJetCollection>& jetCollRef,
0010 const edm::Ref<VertexCollection>& avtxRef,
0011 int bx)
0012 : L1Candidate(p4), etTot_(etTotal), jetCollectionRef_(jetCollRef), vtxRef_(avtxRef), bx_(bx) {
0013 if (vtxRef_.isNonnull()) {
0014 setVtx(vtxRef()->z0());
0015 }
0016 }