CMS 3D CMS Logo

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

Static Public Member Functions

static ColType convert (ValType x)
 

Detailed Description

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

Definition at line 99 of file GlobalVariablesTableProducer.cc.

Member Function Documentation

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

Definition at line 101 of file GlobalVariablesTableProducer.cc.

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

101  {
102  ColType v = 0;
103  for (const auto& i : x)
104  v += i.pt();
105  return v;
106  }