Skip to content

Commit

Permalink
* converted tabs to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
chambm committed Jul 26, 2024
1 parent 59d170e commit 6b7d93b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
10 changes: 5 additions & 5 deletions pwiz/data/vendor_readers/Thermo/Reader_Thermo_Detail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ vector<InstrumentConfiguration> createInstrumentConfigurations(RawFile& rawfile)
analyzerType = MS_magnetic_sector;
detectorType = MS_electron_multiplier;
break;
case MassAnalyzerType_Astral:
analyzerType = MS_asymmetric_track_lossless_time_of_flight_analyzer;
detectorType = MS_electron_multiplier;
case MassAnalyzerType_Astral:
analyzerType = MS_asymmetric_track_lossless_time_of_flight_analyzer;
detectorType = MS_electron_multiplier;
break;
}

Expand Down Expand Up @@ -241,7 +241,7 @@ vector<InstrumentConfiguration> createInstrumentConfigurations(const Component&
case InstrumentModelType_Orbitrap_Exploris_120:
case InstrumentModelType_Orbitrap_Exploris_240:
case InstrumentModelType_Orbitrap_Exploris_480:
case InstrumentModelType_Orbitrap_GC:
case InstrumentModelType_Orbitrap_GC:
configurations.push_back(InstrumentConfiguration());
configurations.back().componentList.push_back(commonSource);
configurations.back().componentList.push_back(Component(MS_quadrupole, 2));
Expand Down Expand Up @@ -346,7 +346,7 @@ vector<InstrumentConfiguration> createInstrumentConfigurations(const Component&
case InstrumentModelType_LTQ_Velos:
case InstrumentModelType_LTQ_Velos_ETD:
case InstrumentModelType_LTQ_Velos_Plus:
case InstrumentModelType_Stellar:
case InstrumentModelType_Stellar:
configurations.push_back(InstrumentConfiguration());
configurations.back().componentList.push_back(commonSource);
configurations.back().componentList.push_back(Component(MS_radial_ejection_linear_ion_trap, 2));
Expand Down
32 changes: 16 additions & 16 deletions pwiz_aux/msrc/utility/vendor_api/thermo/RawFileTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ inline std::vector<IonizationType> getIonSourcesForInstrumentModel(InstrumentMod
case InstrumentModelType_Orbitrap_Ascend:
case InstrumentModelType_Orbitrap_ID_X:
case InstrumentModelType_Orbitrap_Astral:
case InstrumentModelType_Stellar:
case InstrumentModelType_Stellar:
case InstrumentModelType_TSQ:
case InstrumentModelType_TSQ_Quantum:
case InstrumentModelType_TSQ_Quantum_Access:
Expand Down Expand Up @@ -486,7 +486,7 @@ inline MassAnalyzerType convertScanFilterMassAnalyzer(ScanFilterMassAnalyzerType
}
}

case InstrumentModelType_Orbitrap_Astral:
case InstrumentModelType_Orbitrap_Astral:
switch (scanFilterType)
{
case ScanFilterMassAnalyzerType_FTMS: return MassAnalyzerType_Orbitrap;
Expand Down Expand Up @@ -607,7 +607,7 @@ inline std::vector<MassAnalyzerType> getMassAnalyzersForInstrumentModel(Instrume
case InstrumentModelType_Orbitrap_Exploris_120:
case InstrumentModelType_Orbitrap_Exploris_240:
case InstrumentModelType_Orbitrap_Exploris_480:
case InstrumentModelType_Orbitrap_GC:
case InstrumentModelType_Orbitrap_GC:
massAnalyzers.push_back(MassAnalyzerType_Orbitrap);
break;

Expand Down Expand Up @@ -754,7 +754,7 @@ inline std::vector<DetectorType> getDetectorsForInstrumentModel(InstrumentModelT
case InstrumentModelType_Orbitrap_Exploris_120:
case InstrumentModelType_Orbitrap_Exploris_240:
case InstrumentModelType_Orbitrap_Exploris_480:
case InstrumentModelType_Orbitrap_GC:
case InstrumentModelType_Orbitrap_GC:
detectors.push_back(DetectorType_Inductive);
break;

Expand All @@ -775,7 +775,7 @@ inline std::vector<DetectorType> getDetectorsForInstrumentModel(InstrumentModelT
case InstrumentModelType_Orbitrap_Ascend:
case InstrumentModelType_Orbitrap_ID_X:
case InstrumentModelType_Orbitrap_Eclipse:
case InstrumentModelType_Orbitrap_Astral:
case InstrumentModelType_Orbitrap_Astral:
detectors.push_back(DetectorType_Inductive);
detectors.push_back(DetectorType_Electron_Multiplier);
break;
Expand Down Expand Up @@ -918,28 +918,28 @@ enum PWIZ_API_DECL PolarityType

enum PWIZ_API_DECL DataPointType
{
DataPointType_Unknown = -1,
DataPointType_Centroid = 0,
DataPointType_Profile,
DataPointType_Unknown = -1,
DataPointType_Centroid = 0,
DataPointType_Profile,
DataPointType_Count
};


enum PWIZ_API_DECL AccurateMassType
{
AccurateMass_Unknown = -1,
AccurateMass_NotActive = 0, // NOTE: in filter as "!AM": accurate mass not active
AccurateMass_Active, // accurate mass active
AccurateMass_ActiveWithInternalCalibration, // accurate mass with internal calibration
AccurateMass_ActiveWithExternalCalibration // accurate mass with external calibration
AccurateMass_Unknown = -1,
AccurateMass_NotActive = 0, // NOTE: in filter as "!AM": accurate mass not active
AccurateMass_Active, // accurate mass active
AccurateMass_ActiveWithInternalCalibration, // accurate mass with internal calibration
AccurateMass_ActiveWithExternalCalibration // accurate mass with external calibration
};


enum PWIZ_API_DECL TriBool
{
TriBool_Unknown = -1,
TriBool_False = 0,
TriBool_True = 1
TriBool_Unknown = -1,
TriBool_False = 0,
TriBool_True = 1
};

} // namespace Thermo
Expand Down

0 comments on commit 6b7d93b

Please sign in to comment.