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 97 of file GlobalVariablesTableProducer.cc.

Member Function Documentation

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

Definition at line 99 of file GlobalVariablesTableProducer.cc.

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

99  {
100  if(x.empty()) return 0;
101  auto v=x[0].p4();
102  for(const auto & i : x) v+=i.p4();
103  return v.mass();
104  }