Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
- Moved boost::spirit parsers to DDCore, since these parsers are also used
in other packages such as DDCond and DDAlign - whenever strings have to be
converted to objects.
Consequently, the boost spirit code fragments were removed from DDG4.
- Improved and more correct type checking when assigning handles
- Explicit implementation of the object extension mechanism to be used
through inheritance or aggregation rather than having seperate and nearly
identical implementations for various objects.
- Improved defintition of basic objects describing Conditions and Alignment.
- Improved implementation of DDAlign, the alignment support.
Not to be used currently - experimental package.
- Initial implementation of DDCond the package supporting the handling of
conditions.
Not to be used currently - experimental package.
- Geant4Converter: I convinced myself, that the bug in handling assemblies
of assemblies is resolved. To be tested though.
2014/02/07 Frank Gaede
- added DDGear, support for interfacing to gear for backward compatibility
- lives currently in ILDExDet ( should become (optional) part of core DD4hep)
- users need to GearParameter objects as extensions to the DetElement
-> see ILDExTPC_geo.cpp, ILDExVXD_geo.cpp, ILDExTPCSIT_geo.cpp as examples
- program convertToGear creates gear xml file from compact file
( only if GearParameter objects are avialble as extensions)
- added test_convert_ild_gear
- fixed geometry in ILDExVXD_geo.cpp, ILDExTPCSIT_geo.cpp
wrt. to position of support ans sensitive ladders
# v00-06
2014/02/04 Frank Gaede
- fixed environment scripts thisdd4hep.sh and this${PackageName}.sh
to also export library pathes for external libraries (CLHEP, LCIO, gear)
- added some simple tests to ILDExDet, ILDExSimu and noviceN04
- provide cmake script run_test_package.sh ( configured as run_test_${PackageName} )
to call test binaries after initializing the environment
(needed for automated/nightly tests)
- updated Readme.txt wrt build procedure and running the tests
2014/01/17 Markus Frank
- Prepare implementation of Alignment using Release and Grap features of TGeoVolume
and TGeoNode. In principle this was done in a backwards compatible way, but
I cannot really check 100% the #ifdef's.
- Fix handling of XML collections using XercesC.
(Bug reported by P.Kostka).
- Fix several compiler warnings issued by Coverity.
2013/12/17 Markus Frank
- Whole load of fixes to keep coverity quiet....
- Fix bug in DDG4 field interface component
- Allow the usage of units, positions and lorentzvectors and in DDG4 properties.
Example using a position property (ROOT::Math::XYZVector):
Idle> /ddg4/Gun/position (1*mm,1*cm,0.01*m)
Geant4UIMessenger: +++ Gun> Setting property value position = (1*mm,1*cm,0.01*m)
native:( 1 , 10 , 10 ).
- Support for std::vector<T>/std::list<T>/std::set<T> properties.
- Support for include directives of the format
```
<include ref="file-name"/>
for the top level <lccdd> tags
Parent tag Included root tag Data content
-- <lccdd> <define> See below.
<detectors>
<detector>
<display>
<lccdd> Nested includes (with DTD validation for Xerces-C)
-- <define> <define> Set of constants
-- <detectors> <detector> Single XML subdetector description
-- <detectors> <detectors> Multiple XML subdetector descriptions
-- <display> <display> Set ov visualization attributes
DTD validation is only performed using Xerces-C for root tags <lccdd>.
```
- Note:
`<lccdd>` include directives are executed BEFORE any other directive!
Other include directives are executed BEFORE the corresponding named directive!
2013/11/14 Markus Frank
- Reformat files in DDCode and DDG4 to remove the <TAB>s from the source files.
Hopefully the content is now more readable.
- DDCore: Remove empty and named constructors for shapes. Empty constructors
were simply a dangerous hook to memory leaks, named constructors are
deprecated since along time.
- DDG4: add support for messengers to access and modify properties from
the Geant4 prompt. For the test hit classes and the simple sensitive
detector a ROOT I/O plugin was provided.
- DDG4: Split into several libraries:
- libDDG4.so pure link library without any plugins
- libDDG4Legacy.so 'Old' plugins. The old stuff at some point
will have to disappear.
- libDDG4Plugins.so New framework plugins
- libDDG4LCIO.so LCIO output plugin for new framework
2013/11/03 Markus Frank
- doc: Add CHEP2013 paper about DD4hep as a start of the documentation
section. More to come hopefully.
- DDCore: several small improvements:
- Segmentations are no longer Ref_t's.
- Base internal implementing object directly on the segmentations
classes from Christian.
- Rearrangement of some code from Handle.h to Primitives.h
- Allow to attach extensions to LCDD
- DDG4: Fix Frank's simulation problem, which he caused himself
introducing his famous factories....
- DDG4: First attempt to fix simulation problem with mignetic field.
Ready for testing.
- DDG4: First commit of a independent simulation aimed for LHCb and LHeC
+ other newcomers. Documentation needs to be written.
Features:
- Modular setup of all Geant4 action routines as plugins, including the
Run-, event-, tracking-, stacking-, stepping- and generator-actions
as well as the physics lists with particle and physics constructors.
- Setup is possible in XML or with C++ either as an AClick in root or
standalone. Python based starter to come.
- Missing is a modular description of the G4 UI and VIS manager(s).
- Documentation is to come. Before documentation is not present
the usage is discouraged.
Note:
- This version of DDG4 uses boost::spirit. It will compile without
the BOOST include files and the old functionality is preserved,
but it will not work.
To use BOOST add to the cmake statement the following tags:
cmake <regular tags> \
-DDD4HEP_USE_BOOST=ON \
-DBOOST_INCLUDE_DIR=${BOOST_INCLUDE_DIR} ....
Where BOOST_INCLUDE_DIR should point to the boost header directory.
BOOST libraries are not used.
2013/10/18 Markus Frank
- Throw exception if the expression evaluator sees a problem.
The message printed before was often not seen.
- Improve printout on exceptions and plugin abortion
- Remove the typedef RotationZYX -> Rotation and
import the type RotationZYX from ROOT::Math.
- Add more explicit error messages in case a plugin is not found.
- Add file TGeoUnits.h, which allows to use the "usual SystemOfUnits"
from CLHEP using TGeo with the namespace tgeo::xxx
```
Example: tgeo::mm -> 0.1 (Geant3: cm, sec, GeV, degree)
::mm -> 1.0 (Geant4: mm, nsec, MeV, radian)
I hope I got all translations right.
Geant4 Geant3
----------------------------------------------------------------
millimeter mm=1,cm=10 centimeter mm=0.1,cm=1
nanosecond s=1e9 second ns=1e-9,s=1
Mega electron Volt GeV=1e3 GeV GeV=1
radian rad=1 degree rad=180/pi
Unclear to me was if in Geant3 steradian is also 2*2*pi or 2*2*180 degree.
```
F. Gaede
- changes to build system:
(see ReadMe.txt for details)
- moved examples to ./example directory
- they are not built as part of DD4hep anymore
- install thisdd4hep.sh in ./bin
(modified to have the correct pathes)
- added -DINSTALL_DOC=on/off option
to build doxygen documentation (in ./doc/html/index.html)
- create DD4hepConfig.cmake for easy building against DD4hep
( see examples CMakeLists.txt)
- fixed doxygen API documentation (C.Rosemann)
(greatly improved with many graphs)
# v00-04
- placement options are now compatible with geant4
- fixed Geant4SensitiveDetector::getVolumeID()
- modified ILDEx model to not use assemblies (for now !?)
- removed obsolete geant4 example ILDEx
- Fix population procedure of volume manager
- Fix uniqueness of volume identifiers.
- Remove call with lookups by placed volume to the volume manager
- improved ILDEx toy example:
- fixed creation of cellIDS for simhits
- creates SimTrackerHits for VXD, SIT and TPC
- creates SimCalorimeterHits for AHcal barrele and endcap
- works now wigth ILDExSimu _and_ SLIC if no assemblies are used
- assemblies work with the DD4hep Geant4Converter and VolumeManager
- added a prototype example for a ROOT independent
plugin mechanism for SensitiveDetectors
- added example implemetation for Calice test beam
calorimeters: CaliceTbeam (Shaojun Lu, DESY)
2013/21/06 Markus Frank
- Since the placement model for combined translations and rotations
caused more confusion than good, it was agreed to move to a more
Geant4 like placement model using Vectors, Rotations and Transformations
from ROOT::Math. To place a physical volume only one of these
is allowed as an argument: either a rotation or a translation
for simple placements. Combinations may be constructed with Transform3D
objects allowing more complicated placements.
The same mechanism was applied for the operations to construct
boolean solids.
- The CLICSid Examples were updated according to the changes necessary
from 1)
- The Tesla drivers from the ILDExDet example were removed. They are
not compliant to 1).
- The G4 package allows now to translate TGeo geometries to Geant4.
Visual inspection has shown an agreement between the two geometries.
- The TGeo to LCDD/GDML conversion is still buggy. Hence, simulations
using slic as an engine do not yet work. This is being looked at.
IMPORTANT NOTICE:
The changes described in above may affect existing detector constructors.
Unless all problems are solved you should be careful to move to the svn
head. In any case save your checkout or use the tag v00-03.
# v00-03
- broken geometry (for some rotations/translations)
- 'backup release' before placement options
will be reduced
# v00-02
2013/02/06 Markus Frank
- Simplyfy inheritance for common objects from TNamed.
Use direct inheritance of Object from TNamed rather than hidden
using the Value<a,b> construct.
- Added physical volume manager to simplyfy the detector element
and sensitive detector lookup from a given physical volume.
This implies: If the volume manager is instantiated, the readout specifiers
MUST be correct. This is in most xml files NOT the case.
The "system" field holding the sibdetector-id is MANDATORY!
Otherwise you will receive messages like this:
Exception:SITCollection: This ID descriptor has no field with the name:CellID0
while programming VolumeManager. Are your volIDs correct?
- To check the volume identification, add argument -volmgr to geoConverter,
geoDisplay, etc.
- To trace possible memory leaks:
export DD4HEP_TRACE=Yes
then run you converter etc. At the end a table is displayed with a "leakage"
column, showing how many objects were not deleted.
```
+----------------------------------------------------------------+
| I n s t a n c e c o u n t e r s b y T Y P E I N F O |
+----------+---------+-------------------------------------------+
| Total | Leaking | Type identifier |
+----------+---------+-------------------------------------------+
| 13| 0|DD4hep::Geometry::DetElement::Object
| 3| 0|DD4hep::Geometry::SensitiveDetector::Object
| 3| 0|DD4hep::Geometry::Readout::Object
| 1| 0|DD4hep::Geometry::OverlayedField::Object
| 1| 0|DD4hep::Geometry::CartesianField::Object
....
Ideally the second column only has "0"s. Instances of 1 may be OK (singletons).
```
- Prenotice:
As soon as ROOT v 6.00 is out, we will have to use it!
Andrei kindly agreed to implement a few changes to TGeo, which will make
life much easier and the implementation cleaner and less cumbersome.
# v00-01
2013/20/03 Markus Frank
- Finished the compact->lcdd converter
Extract lcdd information
```
$ > geoConverter -compact2lcdd -input file:<compact-input-xml-file> -output <detector>.lcdd
$ > <SimDist>/scripts/slic.sh -o output.slcio -g SiD.lcdd -m <geant4-macro>.mac -r 100
```
- Finished the compact->gdml converter
Full GDML cycle can be tested (deplace <detector> with some meaningful identifier):
- Extract gdml information
`$ > geoConverter -compact2gdml -input file:<compact-input-xml-file> -output <detector>.gdml`
- Extract visualisation hints to csv file
`$ > geoConverter -compact2vis -input file:<compact-input-xml-file> -output <detector>.vis.csv -ascii`
- Load GDML into ROOT:
`$ > root.exe ../doc/gdml_root.C+\(\"<detector>\"\)`
The macro expects *at least* the <detector>.gdml file. If no visualisation
information is found, the resulting graphics however is not very nice!
2013/22/02 Markus Frank
- Today a decision was taken to remove all _X() and _A() macros
accessing static unicode strings. A common macro will be used to
address both XML elements and XML attributes using the macro _U(...).
The original usage only created confusion.
All _X and _A macros were replaced by _U.
- Improve the executables running the plugin mechanism in UtitlityApps.
They now complain if the plugin was not found.
2013/21/02 Markus Frank
- Require strict checks for the existence of xml attributes.
e.g. default=false for Element::attr<bool>() is no longer an option.
if the attribute is not present in the element, an exception
is thrown.
- Slightly change the factory method for creating detector elements.
Use a more generic pattern do support also more generic XML
processing.
2013/20/02 Markus Frank
- Install rootmap mechanism for the usage of plugins.
It is no longer necessary to have separate programs
for the various detector models (ILD/SiD).
One generic display program servest them all.
==> Creation of package DDExamples/UtilityApps
example: $> bin/displayGeo -compact <compact-xml-file>
- This move has another consequence:
All libraries are build into a common install area:
the <build directory>/lib.
All executable binaries are build into a common install area:
the <build directory>/bin.
- The LD_LIBRARY_PATH and PATH variables as defined in
'thisdd4hep.(c)sh' do include these directories
2013/20/02 Markus Frank
- DD4hep release notes. Better start them late than never.
If you perform significant changes to the DD4hep core,