Panzer  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Panzer_CheckBCConsistency.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_CHECK_BC_CONSISTENCY
12 #define PANZER_CHECK_BC_CONSISTENCY
13 
14 #include <vector>
15 #include <string>
16 
17 namespace panzer {
18 
19  class BC;
20 
21  void checkBCConsistency(const std::vector<std::string>& element_block_names,
22  const std::vector<std::string>& sideset_names,
23  const std::vector<panzer::BC>& bcs);
24 
25 }
26 
27 #endif
void checkBCConsistency(const std::vector< std::string > &element_block_names, const std::vector< std::string > &sideset_names, const std::vector< panzer::BC > &bcs)