Panzer Version of the Day
Loading...
Searching...
No Matches
Panzer_BCStrategy_Factory_Composite.hpp
Go to the documentation of this file.
1// @HEADER
2// *****************************************************************************
3// Panzer: A partial differential equation assembly
4// engine for strongly coupled complex multiphysics systems
5//
6// Copyright 2011 NTESS and the Panzer contributors.
7// SPDX-License-Identifier: BSD-3-Clause
8// *****************************************************************************
9// @HEADER
10
11#ifndef PANZER_BCSTRATEGY_FACTORY_COMPOSITE_DECL_HPP
12#define PANZER_BCSTRATEGY_FACTORY_COMPOSITE_DECL_HPP
13
15#include "Teuchos_RCP.hpp"
16#include <vector>
17
18namespace panzer {
19
29
30 public:
31
33 BCFactoryComposite(const std::vector<Teuchos::RCP<panzer::BCStrategyFactory> >& factories);
34
40 Teuchos::RCP<panzer::BCStrategy_TemplateManager<panzer::Traits> >
41 buildBCStrategy(const panzer::BC& bc, const Teuchos::RCP<panzer::GlobalData>& global_data) const;
42
43 private:
44
45 std::vector<Teuchos::RCP<panzer::BCStrategyFactory> > m_bc_strategy_factories;
46
47 };
48
49}
50
51#endif
Stores input information for a boundary condition.
Definition Panzer_BC.hpp:48
A panzer::BCStrategyFactory that contains an internal vector of user BC strategy factories.
Teuchos::RCP< panzer::BCStrategy_TemplateManager< panzer::Traits > > buildBCStrategy(const panzer::BC &bc, const Teuchos::RCP< panzer::GlobalData > &global_data) const
Builds the BC strategy using the first constituent factory that recognizes the given boundary conditi...
std::vector< Teuchos::RCP< panzer::BCStrategyFactory > > m_bc_strategy_factories
Interface for constructing a BCStrategy_TemplateManager.