CMS 3D CMS Logo

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

Static Public Member Functions

static ColType convert (ValType x)
 

Detailed Description

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

Definition at line 121 of file GlobalVariablesTableProducer.cc.

Member Function Documentation

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

Definition at line 123 of file GlobalVariablesTableProducer.cc.

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

123  {
124  if (x.empty())
125  return 0;
126  auto v = x[0].p4();
127  v -= x[0].p4();
128  for (const auto& i : x)
129  v += i.p4();
130  return v.pt();
131  }