LCOV - code coverage report
Current view: top level - include/postprocessors - TensorExtremeValuePostprocessor.h (source / functions) Hit Total Coverage
Test: idaholab/swift: #92 (25e020) with base b3cd84 Lines: 2 2 100.0 %
Date: 2025-09-10 17:10:32 Functions: 2 2 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /**********************************************************************/
       2             : /*                    DO NOT MODIFY THIS HEADER                       */
       3             : /*             Swift, a Fourier spectral solver for MOOSE             */
       4             : /*                                                                    */
       5             : /*            Copyright 2024 Battelle Energy Alliance, LLC            */
       6             : /*                        ALL RIGHTS RESERVED                         */
       7             : /**********************************************************************/
       8             : 
       9             : #pragma once
      10             : 
      11             : #include "TensorPostprocessor.h"
      12             : 
      13             : /**
      14             :  * Compute the average of a Tensor buffer
      15             :  */
      16             : class TensorExtremeValuePostprocessor : public TensorPostprocessor
      17             : {
      18             : public:
      19             :   static InputParameters validParams();
      20             : 
      21             :   TensorExtremeValuePostprocessor(const InputParameters & parameters);
      22             : 
      23        2808 :   virtual void initialize() override {}
      24             :   virtual void execute() override;
      25        2808 :   virtual void finalize() override {}
      26             :   virtual PostprocessorValue getValue() const override;
      27             : 
      28             : protected:
      29             :   enum class ValueType
      30             :   {
      31             :     MIN,
      32             :     MAX
      33             :   } _value_type;
      34             : 
      35             :   Real _value;
      36             : };

Generated by: LCOV version 1.14