ATLAS Offline Software
Public Member Functions | Private Member Functions | Private Attributes | List of all members
LVL1TGC::TGCGoodMF Class Reference

#include <TGCGoodMF.h>

Inheritance diagram for LVL1TGC::TGCGoodMF:
Collaboration diagram for LVL1TGC::TGCGoodMF:

Public Member Functions

 TGCGoodMF (LVL1TGCTrigger::TGCArguments *, const std::string &version)
 
virtual ~TGCGoodMF ()=default
 
 TGCGoodMF (const TGCGoodMF &right)=delete
 
const TGCGoodMFoperator= (const TGCGoodMF &right)
 
bool test_GoodMF (int moduleId, int sscId, int subsector) const
 
bool readBadMFList ()
 
const LVL1TGCTrigger::TGCArgumentstgcArgs () const
 
bool msgLvl (const MSG::Level lvl) const
 Test the output level. More...
 
MsgStream & msg () const
 The standard message stream. More...
 
MsgStream & msg (const MSG::Level lvl) const
 The standard message stream. More...
 
void setLevel (MSG::Level lvl)
 Change the current logging level. More...
 

Private Member Functions

void initMessaging () const
 Initialize our message level and MessageSvc. More...
 

Private Attributes

std::map< int, std::map< int, int > > m_mapisgoodMF
 
LVL1TGCTrigger::TGCArgumentsm_tgcArgs
 
std::string m_verName
 
std::string m_nm
 Message source name. More...
 
boost::thread_specific_ptr< MsgStream > m_msg_tls
 MsgStream instance (a std::cout like with print-out levels) More...
 
std::atomic< IMessageSvc * > m_imsg { nullptr }
 MessageSvc pointer. More...
 
std::atomic< MSG::Level > m_lvl { MSG::NIL }
 Current logging level. More...
 
std::atomic_flag m_initialized ATLAS_THREAD_SAFE = ATOMIC_FLAG_INIT
 Messaging initialized (initMessaging) More...
 

Detailed Description

Definition at line 20 of file TGCGoodMF.h.

Constructor & Destructor Documentation

◆ TGCGoodMF() [1/2]

LVL1TGC::TGCGoodMF::TGCGoodMF ( LVL1TGCTrigger::TGCArguments tgcargs,
const std::string &  version 
)

Definition at line 25 of file TGCGoodMF.cxx.

26 : AthMessaging("LVL1TGC::TGCGoodMF"),
27  m_tgcArgs(tgcargs),
29 {
30  if (this->readBadMFList()) {
31  ATH_MSG_INFO("LVL1TGC Hot-ROI mask version of " << m_verName << " is selected");
32  } else {
33  ATH_MSG_INFO("LVL1TGC Hot-ROI mask NOT defined");
34  }
35 
36 }

◆ ~TGCGoodMF()

virtual LVL1TGC::TGCGoodMF::~TGCGoodMF ( )
virtualdefault

◆ TGCGoodMF() [2/2]

LVL1TGC::TGCGoodMF::TGCGoodMF ( const TGCGoodMF right)
delete

Member Function Documentation

◆ initMessaging()

void AthMessaging::initMessaging ( ) const
privateinherited

Initialize our message level and MessageSvc.

This method should only be called once.

Definition at line 39 of file AthMessaging.cxx.

40 {
42  m_lvl = m_imsg ?
43  static_cast<MSG::Level>( m_imsg.load()->outputLevel(m_nm) ) :
44  MSG::INFO;
45 }

◆ msg() [1/2]

MsgStream & AthMessaging::msg ( ) const
inlineinherited

The standard message stream.

Returns a reference to the default message stream May not be invoked before sysInitialize() has been invoked.

Definition at line 164 of file AthMessaging.h.

165 {
166  MsgStream* ms = m_msg_tls.get();
167  if (!ms) {
168  if (!m_initialized.test_and_set()) initMessaging();
169  ms = new MsgStream(m_imsg,m_nm);
170  m_msg_tls.reset( ms );
171  }
172 
173  ms->setLevel (m_lvl);
174  return *ms;
175 }

◆ msg() [2/2]

MsgStream & AthMessaging::msg ( const MSG::Level  lvl) const
inlineinherited

The standard message stream.

Returns a reference to the default message stream May not be invoked before sysInitialize() has been invoked.

Definition at line 179 of file AthMessaging.h.

180 { return msg() << lvl; }

◆ msgLvl()

bool AthMessaging::msgLvl ( const MSG::Level  lvl) const
inlineinherited

Test the output level.

Parameters
lvlThe message level to test against
Returns
boolean Indicating if messages at given level will be printed
Return values
trueMessages at level "lvl" will be printed

Definition at line 151 of file AthMessaging.h.

152 {
153  if (!m_initialized.test_and_set()) initMessaging();
154  if (m_lvl <= lvl) {
155  msg() << lvl;
156  return true;
157  } else {
158  return false;
159  }
160 }

◆ operator=()

const TGCGoodMF & LVL1TGC::TGCGoodMF::operator= ( const TGCGoodMF right)

Definition at line 38 of file TGCGoodMF.cxx.

39 {
40  if(this != &right){
41  m_tgcArgs=right.m_tgcArgs;
42  m_verName=right.m_verName;
43  this->readBadMFList();
44  }
45 
46  return *this;
47 }

◆ readBadMFList()

bool LVL1TGC::TGCGoodMF::readBadMFList ( )

Definition at line 49 of file TGCGoodMF.cxx.

50 {
51  //initialize
52  std::string buf;
53  std::string fullName, tag; char delimiter = '\n';
54  std::string fn = "/HotRoI/HotRoI."+m_verName+".db";
55 
56  fullName = PathResolver::FindCalibDirectory("dev")+"/TrigT1TGC"+fn;
57  int mod,maxssc;
58  std::ifstream file(fullName.c_str(),std::ios::in);
59  while(getline(file,buf,delimiter)) {
60  std::istringstream header(buf);
61  header>>tag;
62  if(tag == "#"){ // read header part.
63  header>>mod>>maxssc;
64 
65  // get BadMF list
66  getline(file,buf,delimiter);
67  std::istringstream cont(buf);
68  std::map<int,int>& mapssc = m_mapisgoodMF[mod]; // mapssc = <SSCId,badMFId>, m_mapisgoodMF = <ModuleId,<~>>
69  int badMFId;
70  for(int i=0; i<=maxssc; i++) {
71  cont>>badMFId;
72  if(badMFId < 0) continue;
73  mapssc[i] = badMFId;
74  }
75  }
76  }
77  return true;
78 }

◆ setLevel()

void AthMessaging::setLevel ( MSG::Level  lvl)
inherited

Change the current logging level.

Use this rather than msg().setLevel() for proper operation with MT.

Definition at line 28 of file AthMessaging.cxx.

29 {
30  m_lvl = lvl;
31 }

◆ test_GoodMF()

bool LVL1TGC::TGCGoodMF::test_GoodMF ( int  moduleId,
int  sscId,
int  subsector 
) const

Definition at line 80 of file TGCGoodMF.cxx.

81 {
82  std::map<int, std::map<int, int> >::const_iterator itModule=m_mapisgoodMF.find(moduleId);
83  if (itModule==m_mapisgoodMF.end()) return true;
84 
85  const std::map<int, int> &mapssc = itModule->second;
86  std::map<int, int>::const_iterator itSSC=mapssc.find(sscId);
87  if (itSSC==mapssc.end()) return true;
88 
89  int badMFId = itSSC->second;
90  if (badMFId==0){ return true; }
91 
92  std::bitset<kNRoiInSSC> bs(badMFId);
93 
94  int RoIId;
95  if(RoI % kNRoiInSSC >= 4){ RoIId = RoI % kNRoiInSSC - 4; }
96  else{ RoIId = RoI % kNRoiInSSC + 4; }
97 
98  return !bs[RoIId];
99 }

◆ tgcArgs()

const LVL1TGCTrigger::TGCArguments* LVL1TGC::TGCGoodMF::tgcArgs ( ) const
inline

Definition at line 31 of file TGCGoodMF.h.

31 { return m_tgcArgs; }

Member Data Documentation

◆ ATLAS_THREAD_SAFE

std::atomic_flag m_initialized AthMessaging::ATLAS_THREAD_SAFE = ATOMIC_FLAG_INIT
mutableprivateinherited

Messaging initialized (initMessaging)

Definition at line 141 of file AthMessaging.h.

◆ m_imsg

std::atomic<IMessageSvc*> AthMessaging::m_imsg { nullptr }
mutableprivateinherited

MessageSvc pointer.

Definition at line 135 of file AthMessaging.h.

◆ m_lvl

std::atomic<MSG::Level> AthMessaging::m_lvl { MSG::NIL }
mutableprivateinherited

Current logging level.

Definition at line 138 of file AthMessaging.h.

◆ m_mapisgoodMF

std::map<int, std::map<int,int> > LVL1TGC::TGCGoodMF::m_mapisgoodMF
private

Definition at line 34 of file TGCGoodMF.h.

◆ m_msg_tls

boost::thread_specific_ptr<MsgStream> AthMessaging::m_msg_tls
mutableprivateinherited

MsgStream instance (a std::cout like with print-out levels)

Definition at line 132 of file AthMessaging.h.

◆ m_nm

std::string AthMessaging::m_nm
privateinherited

Message source name.

Definition at line 129 of file AthMessaging.h.

◆ m_tgcArgs

LVL1TGCTrigger::TGCArguments* LVL1TGC::TGCGoodMF::m_tgcArgs
private

Definition at line 35 of file TGCGoodMF.h.

◆ m_verName

std::string LVL1TGC::TGCGoodMF::m_verName
private

Definition at line 36 of file TGCGoodMF.h.


The documentation for this class was generated from the following files:
AthMessaging::m_lvl
std::atomic< MSG::Level > m_lvl
Current logging level.
Definition: AthMessaging.h:138
LVL1TGC::TGCGoodMF::m_tgcArgs
LVL1TGCTrigger::TGCArguments * m_tgcArgs
Definition: TGCGoodMF.h:35
header
Definition: hcg.cxx:526
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
WriteCellNoiseToCool.fullName
fullName
Definition: WriteCellNoiseToCool.py:461
AthMessaging::m_imsg
std::atomic< IMessageSvc * > m_imsg
MessageSvc pointer.
Definition: AthMessaging.h:135
PathResolver::FindCalibDirectory
static std::string FindCalibDirectory(const std::string &logical_file_name)
Definition: PathResolver.h:109
python.SystemOfUnits.ms
int ms
Definition: SystemOfUnits.py:132
Athena::getMessageSvc
IMessageSvc * getMessageSvc(bool quiet=false)
Definition: getMessageSvc.cxx:20
LVL1TGC::TGCGoodMF::readBadMFList
bool readBadMFList()
Definition: TGCGoodMF.cxx:49
AthMessaging::AthMessaging
AthMessaging()
Default constructor:
python.AthDsoLogger.delimiter
delimiter
Definition: AthDsoLogger.py:71
python.getCurrentFolderTag.fn
fn
Definition: getCurrentFolderTag.py:65
TrigConf::MSGTC::Level
Level
Definition: Trigger/TrigConfiguration/TrigConfBase/TrigConfBase/MsgStream.h:21
maskDeadModules.mod
mod
Definition: maskDeadModules.py:36
lumiFormat.i
int i
Definition: lumiFormat.py:92
python.DecayParser.buf
buf
print ("=> [%s]"cmd)
Definition: DecayParser.py:27
file
TFile * file
Definition: tile_monitor.h:29
AthMessaging::msg
MsgStream & msg() const
The standard message stream.
Definition: AthMessaging.h:164
get_generator_info.version
version
Definition: get_generator_info.py:33
LVL1TGC::TGCGoodMF::m_mapisgoodMF
std::map< int, std::map< int, int > > m_mapisgoodMF
Definition: TGCGoodMF.h:34
AthMessaging::m_nm
std::string m_nm
Message source name.
Definition: AthMessaging.h:129
LVL1TGC::TGCGoodMF::m_verName
std::string m_verName
Definition: TGCGoodMF.h:36
CaloCondBlobAlgs_fillNoiseFromASCII.tag
string tag
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:24
AthMessaging::initMessaging
void initMessaging() const
Initialize our message level and MessageSvc.
Definition: AthMessaging.cxx:39
makeTOC.header
header
Definition: makeTOC.py:28
AthMessaging::m_msg_tls
boost::thread_specific_ptr< MsgStream > m_msg_tls
MsgStream instance (a std::cout like with print-out levels)
Definition: AthMessaging.h:132