Skip to content

v01-20

Compare
Choose a tag to compare
@andresailer andresailer released this 21 Jan 10:36
· 875 commits to master since this release

v01-20

  • 2021-12-21 Markus Frank (PR#888)

    • Changes for Geant4 11.0.0.
      Propagate additional setup properties for optical parameters in Geant4ScintillationPhysics.
      Other required changes were already included when preparing for the Geant4 beta release.
    • Allow for Geant4 builds without GDML.
      Enable conditional build if the Geant4 build does not support GDML
  • 2021-12-16 Thomas Madlener (PR#887)

    • Rework the EDM4hep output action. The major reason is the renaming of the default types in AIDASoft/podio#205 and its effects on EDM4hep (key4hep/EDM4hep#132). These changes are:
      • Use auto wherever possible to remove any explicit mentioning of EDM4hep types.
      • Switch to range-based for-loops where possible
      • Keep an internal map of the collections to get rid of the const_casts that were used before.
    • EDM4hep output: Make sure that the daughter relations are also set, because that is not done automatically in EDM4hep but is in LCIO.
  • 2021-12-02 Wouter Deconinck (PR#886)

    • Add diquarks to default DDG4 rejectPDGs list
  • 2021-11-26 Markus Frank (PR#885)

    • Remove another occurrency of a call to G4::GetPropertyIndex() with 2nd argument.
    • This PR is an addendum to the already closed request #884
  • 2021-11-22 Markus Frank (PR#884)

    • Issue #881
      Next attempt for resolution. Avoid explicit use of the second argument in
      G4int GetConstPropertyIndex(const G4String& key,
                                  G4bool warning = false) const;
      // Get the constant property index from the key-name
    
      G4int GetPropertyIndex(const G4String& key, G4bool warning = false) const;
      // Get the property index by the key-name.
    

    Should satisfy existing and future snapshots of Geant4.