CMS 3D CMS Logo

List of all members | Static Public Member Functions
GlobalVariablesTableProducer::MassSum< ColType, ValType > Class Template Reference

Static Public Member Functions

static ColType convert (ValType x)
 

Detailed Description

template<typename ColType, typename ValType>
class GlobalVariablesTableProducer::MassSum< ColType, ValType >

Definition at line 131 of file GlobalVariablesTableProducer.cc.

Member Function Documentation

◆ convert()

template<typename ColType , typename ValType >
static ColType GlobalVariablesTableProducer::MassSum< ColType, ValType >::convert ( ValType  x)
inlinestatic

Definition at line 133 of file GlobalVariablesTableProducer.cc.

References mps_fire::i, findQualityFiles::v, and x.

133  {
134  if (x.empty())
135  return 0;
136  auto v = x[0].p4();
137  for (const auto& i : x)
138  v += i.p4();
139  return v.mass();
140  }