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

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

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