CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
ESListOfFEDS Class Reference

#include <ESListOfFEDS.h>

Public Member Functions

void AddFED (int fed)
 
 ESListOfFEDS ()
 
std::vector< int > GetList () const
 
void SetList (std::vector< int > &feds)
 

Private Attributes

std::vector< int > list_of_feds
 

Detailed Description

Definition at line 6 of file ESListOfFEDS.h.

Constructor & Destructor Documentation

ESListOfFEDS::ESListOfFEDS ( )

Definition at line 4 of file ESListOfFEDS.cc.

References list_of_feds.

4  {
5  list_of_feds.clear();
6 }
std::vector< int > list_of_feds
Definition: ESListOfFEDS.h:15

Member Function Documentation

void ESListOfFEDS::AddFED ( int  fed)

Definition at line 8 of file ESListOfFEDS.cc.

References list_of_feds.

8  {
9  list_of_feds.push_back(fed);
10 }
std::vector< int > list_of_feds
Definition: ESListOfFEDS.h:15
std::vector<int> ESListOfFEDS::GetList ( ) const
inline

Definition at line 11 of file ESListOfFEDS.h.

References list_of_feds.

11 { return list_of_feds; }
std::vector< int > list_of_feds
Definition: ESListOfFEDS.h:15
void ESListOfFEDS::SetList ( std::vector< int > &  feds)
inline

Definition at line 12 of file ESListOfFEDS.h.

References HcalMonitorModule_cfi::feds, and list_of_feds.

12 { list_of_feds = feds; }
std::vector< int > list_of_feds
Definition: ESListOfFEDS.h:15

Member Data Documentation

std::vector<int> ESListOfFEDS::list_of_feds
private

Definition at line 15 of file ESListOfFEDS.h.

Referenced by AddFED(), ESListOfFEDS(), GetList(), and SetList().