ATLAS Offline Software
ChainGroupHandling.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // $Id: ChainGroupHandling.cxx 318255 2010-08-27 11:46:34Z krasznaa $
6 
7 // Local include(s):
8 #include "ChainGroupHandling.h"
9 
11 
12 namespace D3PD {
13 
14  namespace Trig {
15 
20  : TNamed( "ChainGroupHandling", "Class handling chain groups" ) {
21 
22  }
23 
32  ChainGroup ChainGroupHandling::GetChainGroup( const std::vector< std::string >& patterns ) {
33 
34  return ChainGroup( patterns, *this, GetConfigSvc() );
35  }
36 
46  ChainGroup ChainGroupHandling::GetChainGroup( const std::string& pattern ) {
47 
48  std::vector< std::string > patterns; patterns.push_back( pattern );
49  return GetChainGroup( patterns );
50  }
51 
52  } // namespace Trig
53 
54 } // namespace D3PD
mergePhysValFiles.pattern
pattern
Definition: DataQuality/DataQualityUtils/scripts/mergePhysValFiles.py:26
Trig
The common trigger namespace for trigger analysis tools.
Definition: CaloTowerVecMon.h:44
ChainGroupHandling.h
patterns
std::vector< std::string > patterns
Definition: listroot.cxx:187
D3PD::Trig::ChainGroupHandling::GetChainGroup
ChainGroup GetChainGroup(const std::vector< std::string > &patterns)
Create a chain group from a list of patterns.
D3PD::Trig::IConfigAccess::GetConfigSvc
virtual TrigConfigSvcD3PD & GetConfigSvc()=0
Function giving access to the trigger configuration service object.
ClassImp
ClassImp(D3PD::Trig::ChainGroupHandling) namespace D3PD
Definition: ChainGroupHandling.cxx:10
D3PD::Trig::ChainGroupHandling::ChainGroupHandling
ChainGroupHandling()
Default constructor.
D3PD
Block filler tool for noisy FEB information.
Definition: InnerDetector/InDetMonitoring/InDetGlobalMonitoring/macros/EnhancedPrimaryVertexMonitoring/TrigD3PD/ChainGroup.h:21
D3PD::Trig::ChainGroupHandling
Class implementing the functions that handle ChainGroup-s.
Definition: ChainGroupHandling.h:41