Skip to content

Releases: AIDASoft/DD4hep

v01-31

27 Jan 15:35
Compare
Choose a tag to compare

v01-31

  • 2025-01-27 Andrii Verbytskyi (PR#1378)

    • Use standard locations if the LD_LIBRARY_PATH or ROOTSYS are empty, i.e. /usr/lib,usr/lib64, etc.
  • 2025-01-25 Markus Frank (PR#1390)

    • Optimize the Geant4VolumeManager. Instead of mapping the Geant4 pathes as vectors of pointers,
      hash64 the pointers of the path and lookup pathes from the touchable history using this key.
    • Relevant changes are in the files DDG4/Geant4GeometryInfo.h and src/Geant4VolumeManager.cpp.
      Everything else is only cosmetics.
  • 2025-01-22 Dmitry Kalinkin (PR#1376)

    • DDSim: Steering files can now omit instantiating a new SIM = DD4hepSimulation(), and instead use a pre-defined variable with name SIM. This allows for steering files that preserve the existing state of DD4hepSimulation that a custom user code had set prior to the parseOptions() call.
  • 2025-01-21 Markus Frank (PR#1387)
    Update the reference files for the Pseudotrap shape checks after mesh creation updates in ROOT.
    Pseudotrap tests are disabled for G4 units due to numerical discrepancies when using G4 units vs. TGeo units.

  • 2025-01-20 Andre Sailer (PR#1371)

    • DDSim: add a reader for EDM4hep files, fixes #1369
      • DDSim can now read EDM4hep files in root format.
  • 2025-01-16 sss (PR#1384)

    • DD4hep::Segmentations: add cellsSpanVolumes function to mark segmentations that that can have cells that span multiple volumes, such as the Allegro ECal.
  • 2025-01-16 jmcarcell (PR#1380)

    • Revert some of the changes of #1375 to build a vector of floats instead of doubles since the necessary constructor doesn't exist in 0.10.X.
    • Use edm4hep::labels::CellIDEncoding only when they are available (starting at version 0.99)
  • 2025-01-13 sss (PR#1386)

    • Fix potential use of dangling temporary in exampe.
  • 2025-01-13 scott snyder (PR#1385)

    • DDSim.ACtion: Fix a wrong variable in a docstring.
  • 2025-01-09 jmcarcell (PR#1374)

    • Do not set or read the color flow for MCParticles from EDM4hep,
      needed after key4hep/EDM4hep#389
  • 2025-01-06 jmcarcell (PR#1375)

    • Fix a few compiler warnings (clang 18) about:
      • Set but unused variables and unused variables or declarations
      • Deprecated constructor for a Vector3d from a Vector3f from EDM4hep
      • Missing override
      • Having a space after operator"" is deprecated
  • 2024-12-10 Andre Sailer (PR#1368)

    • HitTupleAction: change how the tree is written and filled, because that caused segfaults in LCG stack runs of dd4hep example tests.
  • 2024-12-10 Markus Frank (PR#1367)

    • If memory is an issue, the Geant4 memory consumption can be reduced using the smartless option of
      G4LogicalVolume entities. This MR exposes this feature of Geant4 to dd4hep.
      Example fragment of the code:
        Volume vol = ....;
        // 2 is the Geant4 voxelization default. 0 means no voxelization,
        // values bigger than 2 will need more memory.
        int value =  0 .... 5; 
        vol.setSmartlessValue(value);
      
      Fixes #1361
      • An example (+test) is supplied as well:
        • ClientTests/compact/DriftChamber.xml
        • ClientTests/scripts/DriftChamber.py
          where the voxelization is reduced.
  • 2024-12-10 Andre Sailer (PR#1366)

    • DDSim: Clarify that event processing includes Initialisation time, fixes #1364
  • 2024-12-09 ybedfer (PR#1365)

    • Adding a CartesianGridUV segmentation class, providing for a stereo readout, i.e. a readout at an angle w.r.t. the axes of the sensitive volume.
    • The class is a straightforward derivation of CartesianGridXY, with only few extras needed to register the angle parameter and execute the rotation.
  • 2024-12-05 Andre Sailer (PR#1362)

    • Geant4AssemblyVolume: use the same copy ID for the Geant4 Volume as was set in DD4hep geometry construction, fixes #1360 .
  • 2024-11-28 BrieucF (PR#1359)

    • Increased the limit on the maximum number of particles one can provide with the hepevt format from 1 to 50 M, fixes #1356
  • 2024-11-22 Alvaro Tolosa Delgado (PR#1358)

    • Drift chamber data extension DCH_info_struct has been extended with functions to calculate the projection of a point into a wire
  • 2024-11-21 ybedfer (PR#1357)
    Bug fix in CylindricalGridPhiZ:

    • In the cellId member method, one now refrains from reducing the phi parameter modulo 2pi when its IDdescriptor is signed.
    • When the offset is null, this means that the phi range is now [-pi,pi], instead of the previously [0,2pi] which is not appropriate for a signed quantity.
  • 2024-11-19 Andre Sailer (PR#1355)

    • CMake: fix for using Geant4 with internal CLHEP, fix linking error where -lG4clhep was not found. Fixes #1354
  • 2024-11-11 Andre Sailer (PR#1352)

    • DDG4: add possibility to control verbosity for physics constructors
    • DDSim: add new --output.physics parameter to control output level for physics constructors, fixes #1351
  • 2024-11-07 Andre Sailer (PR#1349)

    • PythonPlugin: replace deprecated Eval with Exec (root 6.36 need)
  • 2024-11-07 Alvaro Tolosa Delgado (PR#1348)

    • DDRec/DCH_info.h: make inline definition of insertion operator of DCH_info class. This fixes 'multiple definition' compilation error when header is included more than once.
  • 2024-11-04 Markus Frank (PR#1347)

    • Remove plenty of override warnings from DDG4 compilation
    • Spotted by accidence when checking LHCb nightly builds.
  • 2024-10-24 Andre Sailer (PR#1342)

    • DDSim: add SignalHandler, add disableSignalHandler flag to turn it off (cf. #1330)
    • Examples: make RICH depend on DDG4 for the test
    • DDCad: make two tests depend on DDG4
  • 2024-10-22 Markus Frank (PR#1341)

  • 2024-10-21 Markus Frank (PR#1339)

    • Addendum to MR #1336 which fixes a compilation error on MACOS.
  • 2024-10-21 Andre Sailer (PR#1338)

    • CI: add macOS build again
  • 2024-10-18 Andre Sailer (PR#1337)

    • CMake: explicitly ask for ROOTEve component if it exists so we potentially find the non-builtin nlohmann_json
  • 2024-10-18 Markus Frank (PR#1336)
    Add implementation for signal handling.

    • The generic signal handler in DDCore may be used and specialized by applications as shon in the DDG4 package (see for details src/Geant4Kernel.h)
    • Use generic signal handler in DDG4 for controlled shutdown on CTRL-C.
    • Add test DDG4_SIGINT_handler in examples/DDG4
      to enable the signal handling use from python:
      geant4 = DDG4.Geant4(kernel, tracker='Geant4TrackerCombineAction')
      geant4.registerInterruptHandler() 
      
      Please note: The signal handler must be explicitly installed. DDG4 is a library framework and does not intervene in actions which users possibly want to handle themselves! This mechanism looks simple enough that it should not be annoying.
    • This MR should implement issue#1330 and supposedly supersedes PR#1300
  • 2024-10-17 Andre Sailer (PR#1334)

    • checkOverlaps: move from DDG4 to DDCore as this does not depend on Geant4, no impact on users
    • checkGeometry: move from DDG4 to DDCore as this does not depend on Geant4, no impact on users
    • CI: Key4hep: set CMAKE_INSTALL_LIBDIR=lib because Qt6 sets GNUInstallDir
  • 2024-10-17 jmcarcell (PR#1333)

    • Use edm4hep::labels::CellIDEncoding instead of "CellIDEncoding"
    • Use podio::collMetadataParamName instead of hardcoding the convention of adding __
  • 2024-10-17 Andre Sailer (PR#1332)

    • ImportTest: change 'error' to 'fehler' to avoid triggering test failures for spurious warning from gosam package in lcg stacks
  • 2024-10-16 Andre Sailer (PR#1331)

    • Conditions: change FIRST_KEY, LAST_KEY to constexpr instead of anonymous enum
  • 2024-10-15 BrieucF (PR#1329)

    • ddsim: Set edm4hep the default output format in case DD4hep is compiled with both DDD4HEP_USE_LCIO DD4HEP_USE_EDM4HEP ON
    • ddsim: Change the name of the default output file from dummyOutput to ddsimOutput
  • 2024-10-15 Bohdan Dudar (PR#1326)

  • 2024-10-03 Dmitry K...

Read more

v01-30

10 Sep 06:44
Compare
Choose a tag to compare

v01-30

  • 2024-08-25 Andre Sailer (PR#1317)

    • DDSim: regexSD fix infinite loop, but change the interface from assignment to dictionary entries. Have to ensure only a single entry of a detector is given to the RegexSD
  • 2024-08-15 Sanghyun Ko (PR#1315)

    • DDSim: prevent Geometry.regexSensitiveDetector from always throwing exception when called with argument.
  • 2024-08-13 Andre Sailer (PR#1312)

    • GitlabCI: drop Flake check, since we have that on github as well
  • 2024-08-12 Andre Sailer (PR#1310)

    • GitlabCI: Use an el9 container to build documentation for the webpage
  • 2024-08-12 Andre Sailer (PR#1309)

    • CLICSiD AClick tests: avoid running in parallel, tests might break
  • 2024-08-12 Andre Sailer (PR#1308)

    • Geant4RegexSensitivesConstruction: allow using regex that don't match the full volume path, reduce time by 40% or so
    • DDSim: add interface for Geant4RegexSensitivesConstruction to geometry construction
  • 2024-07-30 Leonhard Reichenbach (PR#1303)

    • Added a Geant4TVUserParticleHandler that can utilise an arbitrary tracking volume as introduced in #384
  • 2024-07-24 ybedfer (PR#1294)

    • Adding a "CylindricalGridPhiZ" segmentation class.
      • N.B.: the class has a "radius" data member, registered by the constructors.
  • 2024-07-22 Markus Frank (PR#1301)

    • See issue #1292 and PR #1293 , fix crash when action dictionary not hashable.
  • 2024-07-22 Andre Sailer (PR#1299)

    • CI: use alma9 stack for python lint check
    • CI: move key4hep stack to alma9
  • 2024-07-22 Sanghyun Ko (PR#1298)

    • Geant4Converter: Improve lookup speed of GeoHandler::i_collect by using std::set instead of std::find (issue #1291)
  • 2024-07-06 jmcarcell (PR#1290)

    • Add the missing header unistd.h in a file to find ::open and ::close
    • Fix a few warnings about unused variables or shadowing
    • Add .cache and compile_commands.json to .gitignore
  • 2024-07-05 Markus Frank (PR#1289)

    • Add RegexSD example for illustration: See #1288
  • 2024-07-05 Markus Frank (PR#1288)

    • As reported in this issue #1285 under certain circumstances the memory usage of DDG4 goes through the roof. This was traced back to the creation of excessive maps in the Geant4VolumeManager, if the number of sensitive pathes is very high like e.g. for straw detectors.
    • To solve the problem, geometry constructors may not declare any sensitive volumes. Hence the Geant4VolumeManager will not be populated. To still make Geant4 functioning, the sensitive volumes may be declared a posterior after conversion using regular expressions as implemented in the class Geant4RegexSensitivesConstruction. This class is only an example how such functionality may be achieved: other solutions are possible as well. This functionality can be switched at the level of each subdetector participating in the experiment setup.
    • To illustrate, an example detector BoxOfStraws was constructed with a flag in the xml description:
        <detector id="1" name="BoxOfStrawsDet" type="DD4hep_BoxOfStraws" readout="BoxOfStrawsHits" vis="VisibleGreen" region="StrawRegion" limits="BoxOfStrawsLimitSet">
          <box      x="1*m"    y="1*m" z="1000*mm"  limits="BoxOfStrawsLimitSet" vis="VisibleRed"/>
          <straw rmax="0.5*mm" y="1*m" thickness="0.1*mm" vis="VisibleBlue">
            <material name="Iron"/>
          </straw>
          <gas vis="VisibleGreen">
            <material name="Argon"/>
            <non_sensitive/>
          </gas>
          <position x="0*m"   y="0*m"   z="0*m"/>
          <rotation x="0"     y="0"     z="0"/>
        </detector>
    

    Change <non_sensitive/> to <sensitive/> and the different behavor of memory allocation when starting Geant4 can be observed.
    The corresponding Geant4 python script can be found here:

    <DD4hep>/examples/ClientTests/scripts/BoxOfStraws.py
    

    The memory consumption differs then as follows (depending on the thickness of the straws, which determine the number of sensitive pathes):

    With explicit sensitive volumes:   
    before Geant4VolumeManager:    Virtual: 903.3m   resident: 690.5m
    after Geant4VolumeManager:     Virtual: 1848.2m  resident: 1.6g   
    
    
    With Sensitives matching regex and not sensitive volumes declared:
    before Geant4VolumeManager:    Virtual: 903.3m   Resident: 690.6m 
    after Geant4VolumeManager:     Virtual: 903.3m   Resident: 690.6m 
    Simulating:                    Virtual: 903.5m   Resident: 692.6m 
    

    Hence this is a possibility to significantly reduce memory consumption for highly granular subdetectors.

  • 2024-07-01 Markus Frank (PR#1287)

    • As noted by Ben, the global alignment does not work in the presence of assemblies.
      This PR together with root-project/root#15905 fixes this deficiency.
    • An example was added to convert a globally misaligned geometry to Geant4:
      $ python examples/AlignDet/scripts/AlephTPC.py -batch -events 5 -alignments examples/AlignDet/compact/AlephTPC_alignment.xml
  • 2024-07-01 jmcarcell (PR#1286)

    • Fix warnings related to unused variables and shadowing of already existing variables
    • Don't use the deprecated PySys_SetArgv
  • 2024-06-26 Andre Sailer (PR#1284)

    • DDG4.inputHandling: do not simulate rejectPDG particles even if they are called stable by the generator file, fixes #1282
  • 2024-06-26 Andre Sailer (PR#1283)

    • DDSim: Do not check for existence of files behind a URL like root://, fixes #1281
  • 2024-06-24 jmcarcell (PR#1280)

    • CMake: Allow finding version 1.0 (and newer) for podio
  • 2024-06-21 Markus Frank (PR#1279)

    • The conquest against tainted variables in coverity
  • 2024-06-20 Markus Frank (PR#1278)

    • Fight coverity tainted variables.

v01-29

07 Jun 08:40
Compare
Choose a tag to compare

v01-29

  • 2024-06-06 Andre Sailer (PR#1277)

    • Geant4Converter: fix the order of the TGeoNode conversion to Geant4 volumes, using vector instead of set. Maybe fixes #1271
  • 2024-05-26 Andre Sailer (PR#1276)

    • XMLElements: fix build when not using XercesC, failing to include header files
  • 2024-05-23 Markus Frank (PR#1275)

    • The battle agains coverity
    • The last defects I know how to solve. For the rest more expertise is required.
  • 2024-05-23 MarkusFrankATcernch (PR#1274)

    • Allow coverity scans being started manually
  • 2024-05-23 Markus Frank (PR#1272)

    • The battle agains coverity. Try to fix various defects.
  • 2024-05-22 Markus Frank (PR#1270)

    • The battle agains coverity: Attack and reduce coverity errors
  • 2024-05-22 Markus Frank (PR#1269)

    • Code maintenance: change quoted include statements to angular brackets in subpackage DDG4.
  • 2024-05-22 Markus Frank (PR#1268)
    Code maintenance:

    • change quoted include statements in DDCore to angular brackets
    • Add the odd licence statement
    • Remove obsolete file DD4hep/TGeoUnits.h: Take TGeoUnits from ROOT if needed.
      This file dates back to the time TGeoUnits.h did not exist in ROOT.
  • 2024-05-21 Markus Frank (PR#1267)

  • 2024-05-16 Andre Sailer (PR#1266)

    • DDSim: make setupUserFunction be documented in the steering file
    • Fix random typos in comments and doxygen strings
    • Geant4Handle: Fix error message when plugin casting did not succeed
  • 2024-05-16 Markus Frank (PR#1265)

    • Fix some coverity problems
  • 2024-05-16 tmadlener (PR#1264)

    • EDM4hepOUTPUT: Introduce pre-processor checks to transparently switch to the new std::optional return values of podio::Frame::getParameter (introduced with AIDASoft/podio#580)
  • 2024-05-16 Thomas Latham (PR#1263)

    • Enhance handling of transformations in VolumeBuilder
  • 2024-05-15 Markus Frank (PR#1262)

    • Add optional instantiation of the G4ScoringManager together with the G4RunManager.
      The instantiation can be steered by option to the Geant4Kernel:
    import DDG4
    g4 = DDG4.Geant4()
    g4.kernel().HaveScoringManager = True
    

    For rational, please see issue: #1261

  • 2024-05-13 Alvaro Tolosa Delgado (PR#1253)

    • DDRec/DCH_info.h: Add data extension class for FCCee Drift Chamber. This class provides data storage and ancillary functionalities needed to build the geometry.
  • 2024-05-10 Andre Sailer (PR#1260)

    • DDG4/DDSim: allow configuring of the unstable generator status codes with SIM.physics.alternativeDecayStatuses. This allows one to tweak which particles are passed to the Geant4 simulation. Fixes #1256
    • DDG4: Geant4InputAction: move setting of generator status bits to a common place, reduce code duplication.
  • 2024-05-07 Markus Frank (PR#1259)

    • Protect Geant4 Primary creation against negative masses.
    • See issue #1233 for a detailed discussion of the problem.
    • Allow shapes to be defined recursively using shape creation plugin.
    • Show how to properly use CAD shapes with a non-zero origin (Issue : #1200)
      examples/DDCAD/compact/DD4hep_Issue_1134_resolved.xml
      Once the CAD shape (aka volume) is placed correctly into the origin of a mother mother, the mother can then be placed
      rotated and shifted according to the the boxed mother's origin like any other volume.
  • 2024-05-07 Andre Sailer (PR#1258)

    • DDSim: correct the number of events when running over all events (-1), fixes #1257
    • GenerationActionInit: declare properties to access number of processed runs (numberOfRuns) and events (numberOfEVents)
    • DDG4: decode or eval all properties out of str or cppyy.gbl.string types
  • 2024-04-23 Andre Sailer (PR#1255)

    • Geant4GFlashShowerModel: remove wrong unit conversions from particleBound properties. Caused particle bounds to be off by 1e3 when GEANT_UNITS were enabled.
  • 2024-04-22 tmadlener (PR#1252)

    • DDDigiEDM4hep: Switch to the correct podio pre-processor version checks for switching to the non-deprecated readers / writers. Also simplify this such that choosing which type(name) to use is handled in one place rather than several.
    • Geant4Output2EDM4hep: Switch to a non-deprecated setter for setting the MCParticle for a SimTrackerHit once EDM4hep ships with it.
  • 2024-04-19 Andre Sailer (PR#1254)

    • CMake: drop possible use of ROOT::PyROOT target, always use ROOT::ROOTTPython
    • Python: remove the use of (dd)six, fix issues pointed out by new version of flake8
  • 2024-04-18 Andre Sailer (PR#1242)

    • CI: change which LCG_releases/ROOT versions DD4hep is tested.
    • Fix various issues with latest version of ROOT (6-32-patches, master) and cppyy in ROOT.
      • ⚠️ : You may encounter issues with python setup complaining about mismatched types, strings, conversions
  • 2024-04-04 Andre Sailer (PR#1251)

    • EDM4hepOutput: determine momentum vector type automagically. Make it work with any EDM4hep version correctly, fixes #1250
  • 2024-04-02 Andre Sailer (PR#1248)

    • ddsim now exits with non-zero exit code when something went wrong during simulation
  • 2024-04-02 Wouter Deconinck (PR#1245)

    • fix adding individual planes to existing Polycone
  • 2024-03-26 Andre Sailer (PR#1247)

    • DDSim: add checks that input files and compact files exist before doing anything extensive and provide proper error message. Fixes #1246
  • 2024-03-21 Markus Frank (PR#1244)

    • The build type flag was lost when including files from compact. This PR fixes this deficiency and ensures the flag propagation. Example: 'box_shape_build_type'
  • 2024-03-20 Alvaro Tolosa Delgado (PR#1243)

    • Fixed TwistedTube when only half-length is provided, making the tube is symmetric along Z axis
  • 2024-03-13 Andre Sailer (PR#1241)

    • CMake: dd4hep_add_dictionary: use temporary files to create dictionary to allow dependencies to use COMPILE_LANGUAGE, fixes #1239 . Add USE_COMMAND_TO_GENERATE option to fall back to previous implementation
    • CMake: dd4hep_add_dictionary: remove duplicates from definition and include_directory options when calling rootcling
  • 2024-02-29 Markus Frank (PR#1238)

    • Adapt documentation for Tube(...) constructor to reality.
      See issue #1236

v01-28

23 Feb 13:27
Compare
Choose a tag to compare

v01-28

  • 2024-02-19 Markus Frank (PR#1228)

    • Fix DD4hep_DetectorDump plugin to avoid crash if a DetElement placement is invalid,
      which is not allowed, but also should not end up in a crash.
    • Add test to check if DetElements have proper placement set using MiniTel example
      (see examples/ClientTests/compact/MiniTel_err_place.xml) and
      test MiniTel_check_missing_placements
    • The fake DD4hep object TwistedTube did not correctly emulate the different constructors when converted
      to Geant4. This should be fixed with this PR.
  • 2024-02-16 Andre Sailer (PR#1231)

    • CMake: use the LCIO::lcio target instead of LCIO::LCIO
  • 2024-02-15 Andre Sailer (PR#1230)

    • XML: add missing std:: when building with TinyXML
    • DetectorSurfaces: silence printout when creating SurfaceList, fixes #1229
  • 2024-02-13 Wouter Deconinck (PR#1225)

    • upgrade CI to checkout@v4, cvmfs@v4, upload-artifact@v4
  • 2024-02-12 Alvaro Tolosa Delgado (PR#1227)

    • Twisted tube: twisted angle unit conversion now works properly
  • 2024-02-12 Markus Frank (PR#1226)
    Multiple commits. Most important one (on user request):

    • Implement CONST properties to optical sufaces. (Requires new release of ROOT)
      See issue: #1223

    Otherwise:

    • Remove support for very old versions of ROOT < 6.10.0
    • Remove support for very old versions of ROOT < 6.26.0.
    • Remove default use of std namespace from most implementation files.
  • 2024-02-12 Wouter Deconinck (PR#1218)

    • add command line options to pass stepping (etc) action plugins to ddsim
  • 2024-02-08 tmadlener (PR#1219)

    • Make the upcoming renaming of edm4hep::TrackerHit to edm4hep::TrackerHit3D (key4hep/EDM4hep#252) transparent as far as DD4hep is concerned.
  • 2024-02-07 jmcarcell (PR#1221)

  • 2024-02-02 tmadlener (PR#1198)

    • Set the momenta of the edm4hep::MCParticle as double instead of float once it becomes possible.
  • 2024-01-18 Markus Frank (PR#1217)

    • Enable energy deposit collection in FiberTubeCalorimeter example.
  • 2024-01-18 Markus Frank (PR#1216)

    • Update FiberTubeCalorimeter example
    • Fix overlapping volumes
  • 2024-01-17 Markus Frank (PR#1215)

    • Fix creation of tessellated shapes from CAD files.
    • Properly hand quadri-linear facets from CAD files.
    • See also: root-project/root#14327
    • See also: #1212
  • 2024-01-16 Markus Frank (PR#1214)

  • 2024-01-15 Markus Frank (PR#1213)

    • Adapt material scan to be aware of the different compilation modes for TGeo units and Geant4 units.
      See also issue #1163.
  • 2024-01-15 Andre Sailer (PR#1212)

    • Assimp: adapt to changes in TGeoTessellated for ROOT 6.32
    • ShapeUtilities: adapt to changes in TGeoTessellated for ROOT 6.32
  • 2024-01-12 Markus Frank (PR#1211)

    • Implement required chnges for new ROOT 6.31.X.
      See issue #1210 for details.
  • 2024-01-08 Markus Frank (PR#1209)

    • Restore behavior of teveDisplay. See issue #1208 for details.
  • 2023-12-19 Andre Sailer (PR#1206)

    • CI: Coverity: use el9 based stack

v01-27-02

15 Dec 18:17
Compare
Choose a tag to compare

v01-27-02

  • 2023-12-15 Andre Sailer (PR#1205)

    • Geant4PrimaryHandling: fix issue with multiple vertices in Geant4 GeneralParticleSource, fixes #1204
  • 2023-12-14 Markus Frank (PR#1201)

    • Incorporate type fix from #1172
    • Propagate polish setting from ROOT surfaces to Geant4
    • Improve debugging capabilities of detector checksums by improved dumping possibilities.
  • 2023-12-14 Andre Sailer (PR#1196)

    • NestedBoxReflection_geo.cpp: use std::abs instead of abs
    • HexGrid: use std::abs instead of abs
    • DDSim: better logging of which sensitive detector is used when defaults are used
  • 2023-12-14 Paul Gessinger (PR#1195)

    • Replace usage of the imp module that was removed in Python 3.12 with importlib and types.
  • 2023-11-24 Andre Sailer (PR#1192)

    • DetectorChecksum: use fabs to check if values are 0.0, fixes #1188

v01-27-01

21 Nov 15:10
Compare
Choose a tag to compare

v01-27-01

  • 2023-11-20 jmcarcell (PR#1191)

    • CMake: Add a check for the c++ standard that Geant4 was compiled with, and fail if it is
      different from the one required for DD4hep.
  • 2023-11-19 Wouter Deconinck (PR#1190)

    • Use TROOT::GetIconPath to find icons in DDEve
  • 2023-11-17 Markus Frank (PR#1187)

    • Implement startup flags to set the visualization depth in teveDisplay like for geoDisplay.
      See Issue: See deeper hierarchy in teveDisplay #1186 for details.
  • 2023-11-17 Dmitry Kalinkin (PR#1184)

    • Fixed runtime issues during initialization caused by incorrectly placed DECLARE_SEGMENTATION for CartesianGridXYStaggered and HexGrid.

v01-27

24 Oct 15:07
Compare
Choose a tag to compare

v01-27

  • 2023-10-19 Alvaro Tolosa Delgado (PR#1174)

    • Geant4OpticalTracker: Kill optical photons (instead of all other particles) as soon they enter into a Optical Tracker sensitive detector
  • 2023-10-19 Wouter Deconinck (PR#1148)

    • Allow several DDRec c'tors to work on const Detector& instead of Detector&
  • 2023-10-18 Markus Frank (PR#1181)
    Allow for XML processing of files relative to xml tag location:

    • For some tags the relative placement of include files was not possible.
      This pull request is supposed to close these missing include features.
    • See issue #1180 for details)
    • See the examples ClientTests: minitel_config_plugins_include_command_xml
      with the compact file ClientTests/compact/IncludePlugins.xml for an example.
  • 2023-10-17 Alvaro Tolosa Delgado (PR#1179)

    • DDSim: Corrected documentation of --gun.energy. This corresponds to the total energy including the mass of the particle
  • 2023-10-11 Andre Sailer (PR#1176)

    • DDG4: G4VTouchable: for Geant4 11.1.ref09 cannot forward declare the class any more
  • 2023-10-11 Markus Frank (PR#1175)

    • Handle request from issue 1166: Allow to load CAD files with relative path w/r to declaring xml file
    • Add illustrating example: t_DDCAD_Check_Shape_RelativePath
  • 2023-09-20 Dhevan Gangadharan (PR#1170)

    • Extend usage of dumpBfield to asymmetric X,Y,Z ranges.
  • 2023-09-20 Sebouh Paul (PR#1161)

    • DDSegmentation: added segmentation HexGrid for hexagonal segmentation
    • DDSegmentation: added CartesionGridXYStaggered for rectangular segmentation that can be staggered for every other layer
  • 2023-09-19 Dmitry Kalinkin (PR#1171)

  • 2023-09-15 jmcarcell (PR#1169)

    • CMake: DDG4: Check if the CLHEP target exists before creating it in DD4hepBuild.cmake, since if it exists cmake will error.
  • 2023-09-15 Wouter Deconinck (PR#1168)

    • ddsim: handle run header exception when the user has no username.
  • 2023-08-31 Dmitry Kalinkin (PR#1165)

    • DDG4: HepMC3Input: Fix loading of run info for RootTree HepMC3 input format
  • 2023-08-25 Andre Sailer (PR#1162)

    • DDEve Webdisplay: fix issue with ROOT master with RGeomViewer no longer being in the experimental namespace.
  • 2023-08-24 Andre Sailer (PR#1160)

    • SiliconBlockGFlash: add maximal energy for using parametrisation, for electron and positron, fixes #1153
  • 2023-08-24 Markus Frank (PR#1155)

    • Implement correct transparency handling of ROOT:
      The transparency setting was connected to the material of the volume.
      This led to the same transparency setting for all volumes of the same material.
      It was not possible to change them at the level of the volume though
      the API suggested so.
      See: #1117
      See: root-project/root#13402
    • Add test examples/ClientTests/compact/visTestEx.xml and visTest.xml.
      From the inversion of tubes with the same material, for ROOT >= 6.29
      the correct transparency settings are shown, whereas for ROOT < 6.29
      the transparency settings are the same for all volumes.
      Also see scripts/visTest.C
  • 2023-08-23 Ben Couturier (PR#1159)

    • Improved _getEnviron to deal with the case when multiple variables are to be evaluated in the string
  • 2023-08-22 Dmitry Kalinkin (PR#1158)

    • DDSim: Fix reading HepMC3 input files via xrootd, fixes #1156
  • 2023-08-22 Wouter Deconinck (PR#1157)

    • Geant4Output2EDM4hep: allow use of identical collection names across multiple detectors
  • 2023-08-04 Andre Sailer (PR#1152)

    • CI: use clang16 for header guards check
  • 2023-08-04 jmcarcell (PR#1151)

    • Limits object: fix string creation of Limit::toString, this will now also print the relevant "particles"
    • Shapes: remove "move" from return of dimensions()

v01-26

25 Jul 09:42
Compare
Choose a tag to compare

v01-26

  • 2023-07-24 Andre Sailer (PR#1147)

    • Add reading of HepMC3 run info and forwarding it to output files: fixes #1114. Reliably this will only work for HepMC3 >= 3.2.6.
  • 2023-07-18 Markus Frank (PR#1146)

    • By default do not keep hash string for detector checksum to minimize resource usage.
      As pointed out in Issue #1143 keeping the hash string of detector
      components is very often too resource/memory consuming. Hence keep the hashed strings only if requested
      e.g. for debugging purposes. By default the hash strings are not kept.
      This means the produces hash sums are NOT backwards compatible, because during the checksum creation the
      hash strings from sub-components were used. These are now consequently replaced by the corresponding hash codes.
  • 2023-07-18 Andre Sailer (PR#1145)

    • DDSim: ConfigHelper: prevent using unknown properties everywhere but in Meta, where we want to allow adding arbitrary information, fixes #1072
  • 2023-07-17 Andre Sailer (PR#1144)

    • DDSim: change the default output file name on how DD4hep was built. Fixes #1101

      • Add outputConfig.forceLCIO, outputConfig.forceEDM4HEP, outputConfig.forceDD4HEP switches to force a particular output plugin
      • If LCIO was used, slcio is still the default
      • If EDM4hep was used but not LCIO, EDM4hep is the default and used for all root output files.
      • If neither LCIO or EDM4hep was used, then DD4hep's root output is used. Use the outputConfig.forceDD4HEP flag to use DD4hep's root output if EDM4hep is available as well
    • DDSim: remove python2 legacy shims

    • Geant4UIManager: fail when pre or post run commands are not successfully executed.

  • 2023-07-14 Andre Sailer (PR#1142)

    • DDSim: add the possibility to configure execution of Geant4 UI commands during the different Geant4 UI phases (fixes #1010)
  • 2023-07-13 Wouter Deconinck (PR#1141)

    • Support TGeoTessellated volumes in DetectorChecksum
  • 2023-07-13 tmadlener (PR#1140)

    • Create a separate metadata Frame in the edm4hep output and put the CellIDEncoding strings there in order to follow the new convention for this introduced by key4hep/k4FWCore#100.
  • 2023-06-24 Markus Frank (PR#1139)

    • Add test for issue #1134
  • 2023-06-23 tmadlener (PR#1138)

    • Make the default return value of DetElementCreator::process non-zero to avoid erroneously raising an exception after finishing.
    • Add a test case that checks that things work
  • 2023-06-22 Markus Frank (PR#1136)

    • Adds missing parts to: #1135
    • Enable CLICSiD GDML exports and import tests and fix the broken import test.
  • 2023-06-22 Andre Sailer (PR#1133)

    • DDSim: OutputConfig: correct the example to be valid python in all cases.
  • 2023-06-21 tmadlener (PR#1132)

    • Add conversion from of TGeoPara to G4Para
  • 2023-06-16 Markus Frank (PR#1131)

    • Fix compile error on MacOS
      See issue #1130
  • 2023-06-14 Wouter Deconinck (PR#1129)

    • fix: exit(0) when --dumpParameter/dumpSteeringFile
  • 2023-06-13 Markus Frank (PR#1128)

    • Move DDDigi edm4hep I/O to new frame writing.
    • Improve DDG4 edm4hep I/O (remove debug statements)
    • Protect DDDigi edm4hep output against races
    • Fix some compiler warnings
  • 2023-06-12 Wouter Deconinck (PR#1108)

    • Delay writing EDM4hep collections until commit at end of event, allowing for multiple collections with same name
  • 2023-06-09 Markus Frank (PR#1125)

    • Define the CellID and the VolumeID data types of segmentations as uint64_t rather than signed integers.
      Reasoning: Please see issue: 1090 (#1090)
  • 2023-06-09 tmadlener (PR#1113)

    • Remove the copy&past DigiFrame.h and use the upstream podio/Frame.h as all functionality is available from there.
    • Increase the minimum podio version to 0.16.3
  • 2023-06-09 tmadlener (PR#1112)

    • Use the templated getMap access functionality for podio::GenericParameters as the non-templated versions will be removed.
  • 2023-06-08 Markus Frank (PR#1126)

    • Allow to user-set world material in compact description:
      <world material="Steel235">
      </world>
    

    See issue #1116 for details.

    • Add test t_minitel_config_world_material illustrating the feature.
  • 2023-06-02 tmadlener (PR#1124)

    • DDDigi: Make the get{Value,}TypeName calls work with the upcoming switch to std::string_view return types in podio.
  • 2023-06-01 Andre Sailer (PR#1123)

    • Volumes.h: rearrange implementation of classes, fix needed for gcc13/root 6.28/04, c++20
  • 2023-06-01 Juraj Smiesko (PR#1122)

    • ddsim: fix indentation from steeringfile produced by ddsim --dumpSteeringFile
  • 2023-06-01 Dmitry Kalinkin (PR#1089)

    • Add optional support for reading compressed files using HepMC3. Enabled with cmake flag DD4HEP_HEPMC3_COMPRESSION_SUPPORT. Needs at least HepMC3.2.5 and presence of zlib, lzma, bzip2
  • 2023-05-31 Markus Frank (PR#1120)

    • Fix example arguments
  • 2023-05-31 Dmitry Kalinkin (PR#1106)

    • DetectorImp::getRefChild() will no longer print to error context to std::cout, it will instead appear in the message of the runtime_exception thrown.
  • 2023-05-30 Markus Frank (PR#1119)

    • Disable DDCMS Geant4 example to resolve MR chain
  • 2023-05-30 Paul Gessinger (PR#1109)

    • Remove using namespace std; in Printout.cpp
  • 2023-05-30 Andre Sailer (PR#1100)

    • CMake: increase required version of Cmake from 3.12 to 3.14
  • 2023-05-30 Markus Frank (PR#1098)

    • MiniTel Generate example should replect the detector in issue (#1091)
  • 2023-05-04 Wouter Deconinck (PR#1105)

    • allow rotation/position transformation on entire CAD_MultiVolume
  • 2023-04-26 Andre Sailer (PR#1099)

    • thisdd4hep.sh: make the Geant4 path discovery compatible with Geant4 11.1.1
  • 2023-04-25 Andre Sailer (PR#1097)

    • Geant4InputHandling: in case the MC generator gives us a negative mass, the proper_time_precision could be negative and we would not identify properTimeZero correctly. Fixes parts of #1094 when ddg4 smearing is used.
  • 2023-04-21 scott snyder (PR#1093)

    • ddsim: Fix handling of --meta.runNumberOffset and --meta.eventNumberOffset command-line switches.
  • 2023-04-21 Frank Gaede (PR#1088)

    • fix units in Geant4FastSimShowerModel::constructSensitives
      • used for energy check in Geant4FastSimShowerModel::check_trigger for fast simulation
  • 2023-04-21 Andre Sailer (PR#1074)

    • DDSim: add explicit configuration of the Geometry construction, exposing many debug options for elements, materials, volumes, shapes, placements, Reflections, Regions, and Surfaces. See ddsim --help or --dumpSteeringFile
  • 2023-03-31 Markus Frank (PR#1087)

    • Improve plugin information
    • inline in StandardPlugins.cpp and ShapePlugins.cpp
    • In DD4hep manual
  • 2023-03-30 Andre Sailer (PR#1086)

    • HepMC3: use all vertex information to create primary vertices, including time, fixes #1082
  • 2023-03-29 Markus Frank (PR#1084)

    • Upgrade standard plugins. Add some help information
  • 2023-03-29 Markus Frank (PR#1083)

    • Add plugin to assign VolumIDs to DetElements
      Normally this functionality id done by the VolumeManager. However, some clients prefer to not use the volume manager.
      With this plugin this basic functionality can be maintained.
    • Update plugin DD4hep_DetectorDump to optionally output the accumulated volume identifiers when traversing
      the DetElement tree.

    To test both, invoke e.g.:

    $> geoPluginRun -input ../DD4hep/DDDetectors/compact/SiD.xml \
         -plugin DD4hep_DetElementVolumeIDs -detector /world \
         -plugin DD4hep_DetectorDump -sensitive -volids
    
  • 2023-03-23 Markus Frank (PR#1081)
    Allow users to add track user information to G4 tracks, which then moves to Geant4Particle for saving
    Use class Geant4ParticleInformation to extend the Geant4Particle object.
    Wrapper to stor...

Read more

v01-25-01

24 Feb 08:42
Compare
Choose a tag to compare

v01-25-01

  • 2023-02-24 Andre Sailer (PR#1063)
    • DDG4: fix -Wnon-pod-varargs in Geant4Output2EDM4hep, which fails on clang

v01-25

23 Feb 17:35
Compare
Choose a tag to compare

v01-25

  • 2023-02-23 Thomas Madlener (PR#1059)

    • Propagate HepMC event weights to EDM4hep and LCIO outputs of ddsim
      • Store all available weights and their names into the Frame / Event parameters, additionally store the first weight into the weight field of the edm4hep::EventHeader, resp. the LCEvent.
    • Add a possibility to store double values in DDG4::EventParameters
  • 2023-02-23 Andre Sailer (PR#920)

    • DDG4: Geant4InputHandling: Try to address the simulation of Excited Ions. Print a warning if we encounter excited Ions that Geant4 cannot handle. Waiting for something else to provide the excitation energy information that is needed in this case. Fixes #918 and #1051
    • DDSim: Catch and log exceptions for physics/userFunctions.
  • 2023-02-21 Ben Couturier (PR#1060)

    • Prevent a compact file from being loaded twice if the debug option "incguard" has been set.
  • 2023-02-16 Andre Sailer (PR#1061)

    • ddsim: make it possible to use batchmode with userInputPlugins only
  • 2023-02-09 Markus Frank (PR#1058)
    The export of dd4hep::units is problematic in the presence of identical libraries from DD4hep in the LD_LIBRARY_PATH:

    • The ROOT auto-class loading tends to falsely load these libraries if constants from the dd4hep namespace are requested in python. This is clearly wrong: the original libraries may not be binary compatible. The

    • The export of the units using a helper class fixes this and ensures that the auto load mechanism is not automatically triggered. This is at least a formally correct solution until the auto load mechanism is better understood.

    • In the ROOT loader for DDDigi the TBranch::SetAutoDelete(true) was not set causing eventually double deletion and arbitrary crashes. Data read by DDDigi are put on the store and deleted by the application to allow subsequent reading for feeding other threads. If ROOT would take care of the deletion, multi-threaded processing is not possible.

  • 2023-02-06 Dmitry Kalinkin (PR#1055)

    • Pass DYLD_LIBRARY_PATH environment to listcomponents_dd4hep when generating rootmaps in CMake
  • 2023-01-31 Paul Gessinger (PR#1053)

    • Check podio version for compatibility in cmake
  • 2023-01-30 Dmitry Kalinkin (PR#1052)

    • Removed not implemented declaration of member function PlacedVolume::flags()
  • 2023-01-26 Thomas Madlener (PR#1050)

    • DDG4 EDM4hep Output: Write Frames into the "runs" category of the output file to store some run information.