- Jul 16, 2019
-
-
Edward Moyse authored
Adding NSW Overlay tools (ATLASSIM-4065) (ATLASSIM-4066) See merge request atlas/athena!24616
-
Edward Moyse authored
TrigEgammaMonitoring migration to athenaMT (step 1) See merge request atlas/athena!24574
-
Working version of example copy inside AthenaMonitoring. Only compile the AthenaMonitoring package, not the TrigEgammaMonitoiring package at the same time
-
Edward Moyse authored
Add DQTDataFlowMonAlg + associated Run 3 monitoring fixes See merge request atlas/athena!24870
-
Edward Moyse authored
Replaced the InputFilePeeker with MetaReader into LArCalorimeter packages See merge request atlas/athena!24842
-
-
Edward Moyse authored
Fix in the MM digit and RDO->PRD converters, and in MM clusterization. See merge request atlas/athena!24384
-
modified: MuonSpectrometer/MuonReconstruction/MuonDataPrep/STgcClusterization/src/SimpleSTgcClusterBuilderTool.cxx modified: MuonSpectrometer/MuonReconstruction/MuonDataPrep/STgcClusterization/src/SimpleSTgcClusterBuilderTool.h
-
Edward Moyse authored
Fixes for muon trigger input maker configuration See merge request atlas/athena!24844
-
Edward Moyse authored
fix for rdo->rdoftk ART test See merge request atlas/athena!24843
-
Edward Moyse authored
Implement map for index to entry lookup to allow ##Links container to mork... See merge request atlas/athena!24856
-
Edward Moyse authored
Explicitly check the validity of the objects before asking for their elements in diff_root_files.py See merge request atlas/athena!24861
-
Edward Moyse authored
Sweeping !24828 from 21.3 to master. Add trigger jets from the Roi to the analysis ntuple See merge request atlas/athena!24865
-
Edward Moyse authored
Sweeping !24799 from 21.3 to master. Apply MMSimHit to TrigT1NSWSimTools. (ATLASSIM-3711, ATLASSIM-3755) See merge request atlas/athena!24864
-
Edward Moyse authored
Cherrypickformaster 0adbb1ee 0adbb1ee See merge request atlas/athena!24868
-
Edward Moyse authored
[ATR-20041] Missing hard-coded trigger chains See merge request atlas/athena!24890
-
- Jul 15, 2019
-
-
Tim Martin authored
-
Tim Martin authored
-
Edward Moyse authored
Fix decision storage for Full Scan See merge request atlas/athena!24866
-
Edward Moyse authored
Update error messages to be more descriptive. See merge request atlas/athena!24764
-
-
Edward Moyse authored
Add bjet chains to trig conf hack list See merge request atlas/athena!24871
-
Edward Moyse authored
Allow commas in titles, part 2 See merge request atlas/athena!24854
-
-
Edward Moyse authored
ISF_FastCaloSimEvent: SGtools -> AthenaKernel See merge request atlas/athena!24855
-
Edward Moyse authored
Add ATLAS_THREAD_SAFETY checker to MCTruthClassifier See merge request atlas/athena!24863
-
Edward Moyse authored
Fix bug in Quick Close Component merger See merge request atlas/athena!24873
-
Edward Moyse authored
TrkVertexSeedFinderTools: Making MCTrueSeedFinder const. See merge request atlas/athena!24874
-
Edward Moyse authored
MuonMDT_CnvTools: Speed up handling of dead tubes. See merge request atlas/athena!24875
-
Edward Moyse authored
HltEventLoopMgr: Add monitoring histogram for algorithm errors See merge request atlas/athena!24876
-
Edward Moyse authored
TrigL2MuonSA: Speed up handling of dead tubes. See merge request atlas/athena!24877
-
Edward Moyse authored
MuonStationIntersectSvc: Speed up handling of dead tubes. See merge request atlas/athena!24878
-
Edward Moyse authored
TrkSurfaces: SGTools -> AthenaKernel See merge request atlas/athena!24879
-
Edward Moyse authored
TrigConfData: camke fix See merge request atlas/athena!24860
-
Edward Moyse authored
IDScanHitFilter: Fix clang warning. See merge request atlas/athena!24859
-
Edward Moyse authored
TrigHLTJetHypo: Fix clang warnings. See merge request atlas/athena!24858
-
Edward Moyse authored
Remove access to vertex container in MuZTPMon (ATR-19997) See merge request atlas/athena!24841
-
Edward Moyse authored
TrkSurfaces: Fix typo in comments. See merge request atlas/athena!24857
-
- Jul 14, 2019
-
-
scott snyder authored
Adjust for headers moved from SGTools to AthenaKernel. Also replace old UNUSED macro with c++17 [[maybe_unused]].
-
scott snyder authored
The search for dead tubes was like this: for(int layer = 1; layer <= mydetEl->getNLayers(); layer++){ for(int tube = 1; tube <= mydetEl->getNtubesperlayer(); tube++){ bool tubefound = false; for(unsigned int kk=0; kk < cv->getNChildVols(); kk++) { int tubegeo = cv->getIdOfChildVol(kk) % 100; int layergeo = ( cv->getIdOfChildVol(kk) - tubegeo ) / 100; if( tubegeo == tube && layergeo == layer ) { tubefound=true; break; } However, getNChildVols() and getIdOfChildVol() are both O(N) operations, requiring a walk of the geo graph. Further, geomodel will maintain the transform while it does so, resulting in many calls to Eigen. And Eigen is much, much, much slower in debug builds than in optimized builds. The upshot is that in debug builds, this code was taking several minutes. Rewrite using geoGetIds so that we only need to traverse the geo graph once (well, twice actually, since i left in the initial check on getNChildVols)
-