CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Attributes
reco::ExprLiteral< Value, ActON > Class Template Reference

#include <Expressions.h>

Public Types

typedef ActON ArgType
 
typedef Value RetType
 

Public Member Functions

 ExprLiteral (const RetType &val)
 
RetType operator() (const ArgType &) const
 

Private Attributes

RetType mVal
 

Detailed Description

template<class Value, class ActON>
class reco::ExprLiteral< Value, ActON >

Definition at line 50 of file Expressions.h.

Member Typedef Documentation

template<class Value , class ActON >
typedef ActON reco::ExprLiteral< Value, ActON >::ArgType

Definition at line 54 of file Expressions.h.

template<class Value , class ActON >
typedef Value reco::ExprLiteral< Value, ActON >::RetType

Definition at line 53 of file Expressions.h.

Constructor & Destructor Documentation

template<class Value , class ActON >
reco::ExprLiteral< Value, ActON >::ExprLiteral ( const RetType val)
inline

Definition at line 56 of file Expressions.h.

References reco::ExprLiteral< Value, ActON >::mVal.

57  { mVal = val; }

Member Function Documentation

template<class Value , class ActON >
RetType reco::ExprLiteral< Value, ActON >::operator() ( const ArgType ) const
inline

Definition at line 59 of file Expressions.h.

References reco::ExprLiteral< Value, ActON >::mVal.

60  { return mVal; }

Member Data Documentation

template<class Value , class ActON >
RetType reco::ExprLiteral< Value, ActON >::mVal
private