CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
P2L1HTMHTEmu::PtPxPy Class Reference

#include <L1PFHtEmulator.h>

Public Member Functions

PtPxPy operator+ (const PtPxPy &b) const
 

Public Attributes

pt_t pt = 0.
 
pxy_t px = 0.
 
pxy_t py = 0.
 

Detailed Description

Definition at line 30 of file L1PFHtEmulator.h.

Member Function Documentation

◆ operator+()

PtPxPy P2L1HTMHTEmu::PtPxPy::operator+ ( const PtPxPy b) const
inline

Definition at line 36 of file L1PFHtEmulator.h.

References b, and HltBtagPostValidation_cff::c.

36  {
37  PtPxPy c;
38  c.pt = this->pt + b.pt;
39  c.px = this->px + b.px;
40  c.py = this->py + b.py;
41  return c;
42  }
double b
Definition: hdecay.h:118

Member Data Documentation

◆ pt

pt_t P2L1HTMHTEmu::PtPxPy::pt = 0.

◆ px

pxy_t P2L1HTMHTEmu::PtPxPy::px = 0.

Definition at line 33 of file L1PFHtEmulator.h.

Referenced by P2L1HTMHTEmu::mht_compute().

◆ py

pxy_t P2L1HTMHTEmu::PtPxPy::py = 0.

Definition at line 34 of file L1PFHtEmulator.h.

Referenced by P2L1HTMHTEmu::mht_compute().