ATLAS Offline Software
CompositeAlgorithm.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // **********************************************************************
6 // $Id: CompositeAlgorithm.cxx,v 1.5 2009-05-07 14:45:54 ponyisi Exp $
7 // **********************************************************************
8 
10 #include "dqm_core/LibraryManager.h"
11 #include "dqm_core/AlgorithmManager.h"
12 
13 #include <iostream>
14 #include <boost/scoped_ptr.hpp>
15 
16 #include <TCollection.h>
17 #include <TDirectory.h>
18 #include <TFile.h>
19 #include <TGraph.h>
20 #include <TKey.h>
21 //#include <TEfficiency.h>
22 
23 
24 namespace dqi{
25 
28  : Algorithm(other)
29  , m_name(other.m_name)
30 {
31  AlgVec_t::const_iterator subAlgsEnd = other.m_subAlgs.end();
32  AlgVec_t::const_iterator subAlgsIter = other.m_subAlgs.begin();
33  for( ; subAlgsIter != subAlgsEnd; ++subAlgsIter ) {
34  dqm_core::Algorithm* otherSubAlg = subAlgsIter->first;
35  dqm_core::Algorithm* alg = otherSubAlg->clone();
36  m_subAlgs.push_back( AlgVec_t::value_type(alg, subAlgsIter->second) );
37  }
38 }
39 
40 
42 CompositeAlgorithm( HanConfigCompAlg& compAlgConfig )
43  : m_name (compAlgConfig.GetName())
44 {
45  TObjString* libStr;
46  TIter libIter( compAlgConfig.GetAllLib() );
47  while( (libStr = dynamic_cast<TObjString*>( libIter() )) != 0 ){
48  try {
49  dqm_core::LibraryManager::instance().loadLibrary( libStr->GetString().Data() );
50  }
51  catch ( dqm_core::Exception& ex ) {
52  std::cout << "Can't load library " << libStr->GetString()
53  << " for composite algorithm " << m_name
54  << ". Continuing regardless ..." << std::endl;
55  }
56  }
57 
58  TObjString* algStr;
59  TIter algIter( compAlgConfig.GetAllAlg() );
60  while( (algStr = dynamic_cast<TObjString*>( algIter() )) != 0 ){
62  std::string algName(algStr->GetString().Data());
63  try {
65  }
66  catch( dqm_core::Exception& ex ) {
67  throw dqm_core::BadConfig( ERS_HERE, m_name, ex.what(), ex );
68  }
69  //std::cout << " --> using component algorithm: \"" << algStr->GetString().Data() << "\"\n";
70  m_subAlgs.push_back( AlgVec_t::value_type(alg, algName) );
71  }
72  dqm_core::AlgorithmManager::instance().registerAlgorithm( m_name, this );
73 }
74 
75 
78 {
79  AlgVec_t::const_iterator subAlgsEnd = m_subAlgs.end();
80  AlgVec_t::const_iterator subAlgsIter = m_subAlgs.begin();
81  for( ; subAlgsIter != subAlgsEnd; ++subAlgsIter ) {
82  dqm_core::Algorithm* alg = subAlgsIter->first;
83  delete alg;
84  }
85  m_subAlgs.clear();
86 }
87 
88 
91 clone()
92 {
94  return result;
95 }
96 
97 
98 void
101 {
102  std::string message;
103  message += "\n";
104  message += "Algorithm: \"" + m_name + "\"\n";
105  message += "Description: Builds a container for subalgorithms.\n";
106  message += "Parameters: none\n";
107 
108  std::cout << message;
109 }
110 
111 
114 execute( const std::string& name, const TObject& data, const dqm_core::AlgorithmConfig& config )
115 {
117  std::map<std::string,double> tags;
118 
119  AlgVec_t::const_iterator subAlgsEnd = m_subAlgs.end();
120  AlgVec_t::const_iterator subAlgsIter = m_subAlgs.begin();
121  for( ; subAlgsIter != subAlgsEnd; ++subAlgsIter ) {
122  boost::scoped_ptr<HanAlgorithmConfig> subConfig(ConfigureSubAlg(config, subAlgsIter->second));
123 
124  dqm_core::Algorithm* alg = subAlgsIter->first;
125  dqm_core::Result* subResult = alg->execute( name, data, *subConfig );
126  if( subResult->status_ != dqm_core::Result::Undefined ) {
128  status = ( subResult->status_ < status ) ? subResult->status_ : status;
129  }
130 
131  std::map<std::string,double>::const_iterator tagsEnd = subResult->tags_.end();
132  std::map<std::string,double>::const_iterator tagsIter = subResult->tags_.begin();
133  for( ; tagsIter != tagsEnd; ++tagsIter ) {
134  std::map<std::string,double>::value_type tagVal( subAlgsIter->second + std::string("|") + tagsIter->first, tagsIter->second );
135  tags.insert( tagVal );
136  }
137  //delete subConfig;
138  delete subResult;
139  }
140 
142  result->tags_ = tags;
143 
144  return result;
145 }
146 
149 ConfigureSubAlg(const dqm_core::AlgorithmConfig& config, const std::string& subalg)
150 {
151 // caller owns the returned object
152 
153 // what we do: copy reference, params, limits to newly created config
154 // copy all those WITHOUT a / (backwards compatibility) and those of the form
155 // subalg/xxx.
156 
157  TObject* ref(0);
158  try {
159  ref = config.getReference();
160  } catch (dqm_core::BadConfig &) { /* ignore */ }
161  std::map< std::string,double > pars;
162  std::map<std::string,std::string> strPars;
163  std::map<std::string,double> grthr;
164  std::map<std::string,double> rdthr;
165 
166  std::map< std::string, double > oldpars(config.getParameters());
167  std::map<std::string,double> oldgrthr(config.getGreenThresholds());
168  std::map<std::string,double> oldrdthr(config.getRedThresholds());
169 
170  for (std::map< std::string, double >::const_iterator parVal = oldpars.begin();
171  parVal != oldpars.end(); ++parVal) {
172  std::string parname(parVal->first);
173  std::string::size_type pos = parname.find('|');
174  if (pos == std::string::npos) {
175  pars.insert(*parVal);
176  } else if (parname.substr(0, pos) == subalg) {
177  pars.insert(std::map< std::string, double >::value_type(parname.substr(pos+1), parVal->second));
178  }
179  }
180  for ( auto& strPar : config.getGenericParameters() ) {
181  std::string parname = strPar.first;
182  auto pipeIndex = parname.find( '|' );
183  if ( pipeIndex == std::string::npos ) {
184  strPars.insert( strPar );
185  } else if ( parname.substr( 0, pipeIndex ) == subalg ) {
186  strPars.emplace( parname.substr( pipeIndex + 1 ), strPar.second );
187  }
188  }
189  for (std::map< std::string, double >::const_iterator thrVal = oldgrthr.begin();
190  thrVal != oldgrthr.end(); ++thrVal) {
191  std::string thrname(thrVal->first);
192  std::string::size_type pos = thrname.find('|');
193  if (pos == std::string::npos) {
194  grthr.insert(*thrVal);
195  } else if (thrname.substr(0, pos) == subalg) {
196  grthr.insert(std::map< std::string, double >::value_type(thrname.substr(pos+1), thrVal->second));
197  }
198  }
199  for (std::map< std::string, double >::const_iterator thrVal = oldrdthr.begin();
200  thrVal != oldrdthr.end(); ++thrVal) {
201  std::string thrname(thrVal->first);
202  std::string::size_type pos = thrname.find('|');
203  if (pos == std::string::npos) {
204  rdthr.insert(*thrVal);
205  } else if (thrname.substr(0, pos) == subalg) {
206  rdthr.insert(std::map< std::string, double >::value_type(thrname.substr(pos+1), thrVal->second));
207  }
208  }
209  return new HanAlgorithmConfig(ref, pars, strPars, grthr, rdthr, 0);
210 }
211 
212 
213 
214 }//namespace dqi
make_hlt_rep.pars
pars
Definition: make_hlt_rep.py:90
dqi::CompositeAlgorithm::clone
virtual dqm_core::Algorithm * clone()
Definition: CompositeAlgorithm.cxx:91
dqi::HanConfigCompAlg
Definition: HanConfigCompAlg.h:22
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
dqi::CompositeAlgorithm::~CompositeAlgorithm
virtual ~CompositeAlgorithm()
Definition: CompositeAlgorithm.cxx:77
Undefined
@ Undefined
Definition: MaterialTypes.h:8
SGout2dot.alg
alg
Definition: SGout2dot.py:243
get_generator_info.result
result
Definition: get_generator_info.py:21
dqi::CompositeAlgorithm::ConfigureSubAlg
HanAlgorithmConfig * ConfigureSubAlg(const dqm_core::AlgorithmConfig &config, const std::string &subalg)
Definition: CompositeAlgorithm.cxx:149
dqi::HanAlgorithmConfig
Definition: HanAlgorithmConfig.h:22
dqi::CompositeAlgorithm::CompositeAlgorithm
CompositeAlgorithm(const CompositeAlgorithm &other)
Definition: CompositeAlgorithm.cxx:27
xAOD::JetAlgorithmType::algName
const std::string & algName(ID id)
Converts a JetAlgorithmType::ID into a string.
Definition: JetContainerInfo.cxx:67
python.CreateTierZeroArgdict.parname
parname
Definition: CreateTierZeroArgdict.py:194
python.FakeAthena.Algorithm
def Algorithm(name)
Definition: FakeAthena.py:41
dqi::HanConfigCompAlg::GetAllLib
virtual TIter GetAllLib() const
Definition: HanConfigCompAlg.cxx:113
ReweightUtils.message
message
Definition: ReweightUtils.py:15
config
Definition: PhysicsAnalysis/AnalysisCommon/AssociationUtils/python/config.py:1
dqi::HanConfigCompAlg::GetAllAlg
virtual TIter GetAllAlg() const
Definition: HanConfigCompAlg.cxx:98
instance
std::map< std::string, double > instance
Definition: Run_To_Get_Tags.h:8
tags
std::vector< std::string > tags
Definition: hcg.cxx:102
Result
ICscStripFitter::Result Result
Definition: CalibCscStripFitter.cxx:13
python.handimod.Green
int Green
Definition: handimod.py:524
dqi::CompositeAlgorithm::m_subAlgs
AlgVec_t m_subAlgs
Definition: CompositeAlgorithm.h:36
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
CompositeAlgorithm.h
python.LumiBlobConversion.pos
pos
Definition: LumiBlobConversion.py:18
InDetDD::other
@ other
Definition: InDetDD_Defs.h:16
Athena::Status
Status
Athena specific StatusCode values.
Definition: AthStatusCode.h:22
ref
const boost::regex ref(r_ef)
dqi::CompositeAlgorithm::m_name
std::string m_name
Definition: CompositeAlgorithm.h:35
dqi::CompositeAlgorithm
Definition: CompositeAlgorithm.h:18
merge.status
status
Definition: merge.py:17
dqi
Definition: CompositeAlgorithm.h:16
dqi::CompositeAlgorithm::execute
virtual dqm_core::Result * execute(const std::string &name, const TObject &data, const dqm_core::AlgorithmConfig &config)
Definition: CompositeAlgorithm.cxx:114
dqi::CompositeAlgorithm::printDescription
virtual void printDescription()
Definition: CompositeAlgorithm.cxx:100