www.mooseframework.org
XFEMMarkerAux.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
12 #include "AuxKernel.h"
13 
14 class XFEM;
15 
16 class XFEMMarkerAux : public AuxKernel
17 {
18 public:
20 
22 
23  virtual ~XFEMMarkerAux() {}
24 
25 protected:
26  virtual Real computeValue();
27 
28 private:
29  std::shared_ptr<XFEM> _xfem;
30 };
XFEMMarkerAux(const InputParameters &parameters)
Definition: XFEMMarkerAux.C:24
static InputParameters validParams()
Definition: XFEMMarkerAux.C:17
This is the XFEM class.
Definition: XFEM.h:107
std::shared_ptr< XFEM > _xfem
Definition: XFEMMarkerAux.h:29
virtual Real computeValue()
Definition: XFEMMarkerAux.C:37
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
virtual ~XFEMMarkerAux()
Definition: XFEMMarkerAux.h:23