CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
pos::PixelChannel Class Reference

#include "interface/PixelChannel.h"

Public Member Functions

std::string channelname () const
 
const PixelModuleNamemodule () const
 
std::string modulename () const
 
const bool operator< (const PixelChannel &aChannel) const
 
const bool operator== (const PixelChannel &aChannel) const
 
 PixelChannel ()
 
 PixelChannel (PixelModuleName module, std::string TBMChannel)
 
 PixelChannel (PixelModuleName module, PixelTBMChannel TBMChannel)
 
 PixelChannel (std::string name)
 
const PixelTBMChannelTBMChannel () const
 
std::string TBMChannelString () const
 

Private Attributes

PixelModuleName module_
 
PixelTBMChannel TBMChannel_
 

Detailed Description

A longer explanation will be placed here later

Definition at line 21 of file PixelChannel.h.

Constructor & Destructor Documentation

pos::PixelChannel::PixelChannel ( )
inline

Definition at line 23 of file PixelChannel.h.

References Skims_PA_cff::name, AlCaHLTBitMon_QueryRunRegistry::string, and TBMChannel().

23 { ; }
PixelChannel::PixelChannel ( PixelModuleName  module,
std::string  TBMChannel 
)

Definition at line 5 of file PixelChannel.cc.

5 : module_(module), TBMChannel_(TBMChannel) {}
PixelModuleName module_
Definition: PixelChannel.h:45
const PixelTBMChannel & TBMChannel() const
Definition: PixelChannel.h:30
PixelTBMChannel TBMChannel_
Definition: PixelChannel.h:46
PixelChannel::PixelChannel ( PixelModuleName  module,
PixelTBMChannel  TBMChannel 
)

Definition at line 7 of file PixelChannel.cc.

8  : module_(module), TBMChannel_(TBMChannel) {}
PixelModuleName module_
Definition: PixelChannel.h:45
PixelTBMChannel TBMChannel_
Definition: PixelChannel.h:46
PixelChannel::PixelChannel ( std::string  name)

Definition at line 10 of file PixelChannel.cc.

References module_, TBMChannel_, and TBMChannelString().

10  {
12  char TBMChannelString[2] = {0, 0};
13  TBMChannelString[0] = name[name.size() - 1]; // take the last character of name
14  TBMChannel_ = PixelTBMChannel(TBMChannelString);
15 }
PixelModuleName module_
Definition: PixelChannel.h:45
Simple class to hold either "A" or "B" for the TBM channel.
std::string TBMChannelString() const
Definition: PixelChannel.h:31
PixelTBMChannel TBMChannel_
Definition: PixelChannel.h:46
This class implements..

Member Function Documentation

std::string PixelChannel::channelname ( ) const

Definition at line 22 of file PixelChannel.cc.

References modulename(), and TBMChannelString().

Referenced by pos::operator<<(), and TBMChannelString().

22 { return modulename() + "_ch" + TBMChannelString(); }
std::string modulename() const
Definition: PixelChannel.h:29
std::string TBMChannelString() const
Definition: PixelChannel.h:31
const PixelModuleName& pos::PixelChannel::module ( ) const
inline

Definition at line 28 of file PixelChannel.h.

References module_.

28 { return module_; }
PixelModuleName module_
Definition: PixelChannel.h:45
std::string pos::PixelChannel::modulename ( ) const
inline

Definition at line 29 of file PixelChannel.h.

References module_, and pos::PixelModuleName::modulename().

Referenced by channelname().

29 { return module_.modulename(); }
PixelModuleName module_
Definition: PixelChannel.h:45
std::string modulename() const
const bool pos::PixelChannel::operator< ( const PixelChannel aChannel) const
inline

Definition at line 36 of file PixelChannel.h.

References module_, and TBMChannel_.

36  {
37  return (module_ < aChannel.module_ || (module_ == aChannel.module_ && TBMChannel_ < aChannel.TBMChannel_));
38  }
PixelModuleName module_
Definition: PixelChannel.h:45
PixelTBMChannel TBMChannel_
Definition: PixelChannel.h:46
const bool pos::PixelChannel::operator== ( const PixelChannel aChannel) const
inline

Definition at line 40 of file PixelChannel.h.

References module_, and TBMChannel_.

40  {
41  return (module_ == aChannel.module_ && TBMChannel_ == aChannel.TBMChannel_);
42  }
PixelModuleName module_
Definition: PixelChannel.h:45
PixelTBMChannel TBMChannel_
Definition: PixelChannel.h:46
const PixelTBMChannel& pos::PixelChannel::TBMChannel ( ) const
inline

Definition at line 30 of file PixelChannel.h.

References TBMChannel_.

Referenced by PixelChannel().

30 { return TBMChannel_; }
PixelTBMChannel TBMChannel_
Definition: PixelChannel.h:46
std::string pos::PixelChannel::TBMChannelString ( ) const
inline

Member Data Documentation

PixelModuleName pos::PixelChannel::module_
private

Definition at line 45 of file PixelChannel.h.

Referenced by module(), modulename(), operator<(), operator==(), and PixelChannel().

PixelTBMChannel pos::PixelChannel::TBMChannel_
private

Definition at line 46 of file PixelChannel.h.

Referenced by operator<(), operator==(), PixelChannel(), TBMChannel(), and TBMChannelString().