From 01674840b6b44c0d87bb507464203e404be2e4ea Mon Sep 17 00:00:00 2001 From: Piotr Konopka Date: Fri, 21 Jun 2024 18:53:05 +0200 Subject: [PATCH] Remove the obsolete NotBadFlagExample (#13152) * Remove the obsolete NotBadFlagExamply * remove from the test --- DataFormats/QualityControl/etc/flagTypes.csv | 1 - .../QualityControl/test/testQualityControlFlagCollection.cxx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/DataFormats/QualityControl/etc/flagTypes.csv b/DataFormats/QualityControl/etc/flagTypes.csv index b4504b0f8f896..97107cd15a9e7 100644 --- a/DataFormats/QualityControl/etc/flagTypes.csv +++ b/DataFormats/QualityControl/etc/flagTypes.csv @@ -12,4 +12,3 @@ 12,"BadEMCalorimetry","Bad EM Calorimetry",1,0 13,"BadPhotonCalorimetry","Bad Photon Calorimetry",1,0 14,"Unknown","Unknown",1,0 -65501,"NotBadFlagExample","Not bad flag example",0,0 \ No newline at end of file diff --git a/DataFormats/QualityControl/test/testQualityControlFlagCollection.cxx b/DataFormats/QualityControl/test/testQualityControlFlagCollection.cxx index 198ae29bc53a6..4eabfc5908741 100644 --- a/DataFormats/QualityControl/test/testQualityControlFlagCollection.cxx +++ b/DataFormats/QualityControl/test/testQualityControlFlagCollection.cxx @@ -99,7 +99,7 @@ BOOST_AUTO_TEST_CASE(test_QualityControlFlagCollection_IO) qcfc1.insert({51, 77, FlagTypeFactory::Invalid()}); qcfc1.insert({1234, 3434, FlagTypeFactory::LimitedAcceptanceMCNotReproducible()}); qcfc1.insert({50, 77, FlagTypeFactory::LimitedAcceptanceMCNotReproducible()}); - qcfc1.insert({43434, 63421, FlagTypeFactory::NotBadFlagExample()}); + qcfc1.insert({43434, 63421, FlagTypeFactory::Good()}); std::stringstream store; qcfc1.streamTo(store);