diff --git a/VectoCore/VectoCore/InputData/Reader/ComponentData/DrivingCycleDataReader.cs b/VectoCore/VectoCore/InputData/Reader/ComponentData/DrivingCycleDataReader.cs index 0bbc21bd59f757fab66cc12c7bd991126955867c..f9e4a46109b49f737dbae7241d39d4fe51589fbe 100644 --- a/VectoCore/VectoCore/InputData/Reader/ComponentData/DrivingCycleDataReader.cs +++ b/VectoCore/VectoCore/InputData/Reader/ComponentData/DrivingCycleDataReader.cs @@ -806,7 +806,7 @@ namespace TUGraz.VectoCore.InputData.Reader.ComponentData var valid = CheckColumns(header, allowedCols, requiredCols, throwExceptions, allowAux) && CheckComboColumns(header, new[] { Fields.AirSpeedRelativeToVehicle, Fields.WindYawAngle }, throwExceptions); - valid &= header.Cast<DataColumn>().Any(x => x.ColumnName.StartsWith("fc_")); + //valid &= header.Cast<DataColumn>().Any(x => x.ColumnName.StartsWith("fc_")); return valid; }