CMS 3D CMS Logo

Public Types | Public Member Functions | Private Attributes

reco::ExprLiteral< Value, ActON > Class Template Reference

#include <Expressions.h>

List of all members.

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.

  { 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.

  { return mVal; }

Member Data Documentation

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