OGS
ElementErrorCode.h File Reference

Detailed Description

Definition of ElementErrorCodes.

Author
Karsten Rink
Date
2014-02-21

Definition in file ElementErrorCode.h.

#include <bitset>
#include <string>
Include dependency graph for ElementErrorCode.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ElementErrorCode
 Collects error flags for mesh elements. More...
 

Enumerations

enum class  ElementErrorFlag {
  ZeroVolume , NonCoplanar , NonConvex , NodeOrder ,
  MaxValue
}
 Possible error flags for mesh elements. More...
 

Enumeration Type Documentation

◆ ElementErrorFlag

enum ElementErrorFlag
strong

Possible error flags for mesh elements.

Enumerator
ZeroVolume 
NonCoplanar 
NonConvex 
NodeOrder 
MaxValue 

Definition at line 22 of file ElementErrorCode.h.

23 {
24  ZeroVolume,
26  NonConvex,
27  NodeOrder,
28  //... add other error flags here
29  MaxValue // this needs to be last to set the bitset size correctly!
30 };