Skip to content
Snippets Groups Projects
Commit 4ed26c4f authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'fix.AuxStore.detect.property' into 'master'

Restore detection of AuxStore based on type Property

See merge request atlas/athena!62070
parents 1d15f7b8 79382a9e
No related branches found
No related tags found
38 merge requests!66406ZDC & ZDC LED monitoring updates,!66102ZDC & RPD monitoring update,!65937Draft: Updated post-processing and plotting scripts for 2023 data in ZLumi_Scripts directory,!65537ZDC - Fix problem with swapping of low and high gain data,!64732Add hypo for time-significance based selection of HLT jets,!64579Draft: Replace status() with functions from TruthUtils,!64531gFex Simulation Updates,!64529gFEX simulation updates,!64426CREST server URL parameter added in IOVDbSvc,!64423CREST server URL parameter added in IOVDbSvc,!64403Draft: ZFinder for jet super ROI,!64345potential bug,!64193Fix WriteDecorHandleKey type for ftag electron barcode decorators,!64090Configuration of AFP+dijet chains,!63927Update NSWPRDValAlg output filenames,!63828Revert "Merge branch 'skip.PyUtils-20230618' into '23.0'",!63827Draft: Updated logic in DQTGlobalWZFinderAlg for trigger function if DQ.useTrigger flag is disabled,!6382423.0-coverity-FPGATrackSimMaps,!63790Draft: replacing HT1000 preselj180 with HT1000 preselcHT450,!63694Draft: Add histograms for overflow monitoring in L1Topo,!63616Substituting hard-coded Z5/Z1 ratio values with soft-coded ones,!63486Draft: Added fragments to record extra infor from HI reco,!63316WIP: Changing default value of tolerance in STEP propagator,!63264Draft: Pass by reference in FTF loops,!63164bugfix NswCondTestAlg,!63067add inner-coincidence plots to TGC offline DQ,!63027Fixing large-R jets collection name,!63010Update R22 derivations to use large-R jet pre-recommendations calibration,!62744Draft: Z-Counting Release 23 Pandas Scripts Directory,!62682CREST data dump option added for IOVDbSvc,!62533createTagMetaInfoFS update,!62410Remove deprecated LLP1 config,!62396Add Iso and Trigger key properties in the example Alg,!62387Draft: Improve Trigger EGamma Emulator python code,!62384store Electron LH (charge ID selector) as float rather than double in derivations,!62134AF3: mirror showers for positrons and negative hadrons,!62070Restore detection of AuxStore based on type Property,!60432Add linear extrapolation in old charge calibration (ATLASRECTS-7337)
......@@ -29,7 +29,9 @@ namespace RootAuxDynIO
hasAuxStore(std::string_view fieldname, TClass *tc) {
// check the name first, and only if it does not match AUX_POSTFIX ask TClass
return endsWithAuxPostfix(fieldname)
or ( tc and tc->GetBaseClass("SG::IAuxStore") );
or ( tc and ( tc->GetBaseClass("SG::IAuxStore")
// the IAuxStore property is used in DataModelTests
or RootType(tc).Properties().HasProperty("IAuxStore") ));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment