Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:37

0001 #include "DataFormats/L1TParticleFlow/interface/PFTau.h"
0002 
0003 l1t::PFTau::PFTau(
0004     const PolarLorentzVector& p, float NNValues[80], float iso, float fulliso, int id, int hwpt, int hweta, int hwphi)
0005     : L1Candidate(p, hwpt, hweta, hwphi, /*hwQuality=*/int(0)), iso_(iso), fullIso_(fulliso), id_(id) {
0006   for (int i0 = 0; i0 < 80; i0++)
0007     NNValues_[i0] = NNValues[i0];  // copy the array of NN inputs
0008 }