79 typename std::conditional<storePressure,
80 FluidStateExplicitPressureModule<ValueType, numPhasesV, OPM_SMFS>,
81 FluidStateNullPressureModule<ValueType> >::type,
82 typename std::conditional<storeTemperature,
83 FluidStateExplicitTemperatureModule<ValueType, numPhasesV, OPM_SMFS>,
84 FluidStateNullTemperatureModule<ValueType> >::type,
85 typename std::conditional<storeComposition,
86 FluidStateExplicitCompositionModule<ValueType, FluidSystem, OPM_SMFS>,
87 FluidStateNullCompositionModule<ValueType> >::type,
88 typename std::conditional<storeFugacity,
89 FluidStateExplicitFugacityModule<ValueType, numPhasesV, numComponentsV, OPM_SMFS>,
90 FluidStateNullFugacityModule<ValueType> >::type,
91 typename std::conditional<storeSaturation,
92 FluidStateExplicitSaturationModule<ValueType, numPhasesV, OPM_SMFS>,
93 FluidStateNullSaturationModule<ValueType> >::type,
94 typename std::conditional<storeDensity,
95 FluidStateExplicitDensityModule<ValueType, numPhasesV, OPM_SMFS>,
96 FluidStateNullDensityModule<ValueType, numPhasesV, OPM_SMFS> >::type,
97 typename std::conditional<storeViscosity,
98 FluidStateExplicitViscosityModule<ValueType, numPhasesV, OPM_SMFS>,
99 FluidStateNullViscosityModule<ValueType, numPhasesV, OPM_SMFS> >::type,
100 typename std::conditional<storeEnthalpy,
101 FluidStateExplicitEnthalpyModule<ValueType, numPhasesV, OPM_SMFS>,
102 FluidStateNullEnthalpyModule<ValueType, numPhasesV, OPM_SMFS> >::type