Panzer  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Panzer_CoordinatesEvaluator.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_COORDINATESEVALUTOR_HPP
12 #define PANZER_COORDINATESEVALUTOR_HPP
13 
14 #include "PanzerDiscFE_config.hpp"
15 
16 #include "Phalanx_Evaluator_Macros.hpp"
17 #include "Phalanx_MDField.hpp"
18 
20 
21 namespace panzer {
22 
23 template<typename EvalT, typename Traits>
25  :
26  public panzer::EvaluatorWithBaseImpl<Traits>,
27  public PHX::EvaluatorDerived<EvalT, Traits>
28 {
29  public:
30 
32  const Teuchos::ParameterList& p);
33 
34  void
36  typename Traits::SetupData d,
38 
39  void
41  typename Traits::EvalData d);
42 
43  private:
44 
45  using ScalarT = typename EvalT::ScalarT;
46 
47  int dimension;
48 
50 
51 }; // end of class CoordinatesEvaluator
52 
53 
54 }
55 
56 #endif
CoordinatesEvaluator(const Teuchos::ParameterList &p)
void postRegistrationSetup(typename Traits::SetupData d, PHX::FieldManager< Traits > &fm)
void evaluateFields(typename Traits::EvalData d)
Wrapper to PHX::EvaluatorWithBaseImpl that implements Panzer-specific helpers.
PHX::MDField< ScalarT, Cell, BASIS > coordinate