Skip to content

Commit

Permalink
Updates BlueQuartzSoftware#175 Adding Pareto string constant and enum…
Browse files Browse the repository at this point in the history
…eration
  • Loading branch information
EXPONENT\jtucker committed Feb 15, 2018
1 parent a0be8be commit a69c29e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Source/SIMPLib/Common/Constants.h
Expand Up @@ -627,6 +627,7 @@ namespace SIMPL
const QString ODFWeights("ODF-Weights");

const QString ParentPhase("Parent Phase");
const QString ParetoDistribution("Pareto Distribution");
const QString PhaseFraction("PhaseFraction");
const QString PhaseType("PhaseType");
const QString PipelineGroupName("Pipeline");
Expand Down Expand Up @@ -722,16 +723,18 @@ namespace SIMPL
const unsigned int RDFFrequency = 3; //!<
const unsigned int RDFMaxMin = 4; //!<
const unsigned int UnknownDistributionType = 5; //!<
const unsigned int Count = 6; //!<
const unsigned int Count = 6; //!<
const unsigned int Pareto = 7; //!<

enum ColumnCount
{
BetaColumnCount = 2, //!<
LogNormalColumnCount = 2, //!<
PowerLawColumnCount = 2, //!<
RawDistDataColumnCount = 1, //!<
UnknownColumCount = 0 //!<
};
UnknownColumCount = 0, //!<
ParetoColumnCount = 2 //!<
};


}
Expand Down

0 comments on commit a69c29e

Please sign in to comment.