![]() |
eventAnalysis
7.0-49-g0ac7482
|
Freeze information:
The first frozen release of oaAnalysis.
Consists of a base class for all the modules (TAnalysisModuleBase), some basic modules (TBasicHeaderModule, TTruthVerticesModule, TTruthTrajectoriesModule, TTrackerECALReconModule), and a steering class (TAnalysisControl), and support files.
Packaged by Yoshi Uchida, based on original code from Christian Hansen, Ian Taylor, and Ben Still and others.
Freeze information:
Improvement to TTruthTrajectoriesModule. Change to put in a default minimum length cutoff for trajectories, of 20mm. All primaries get saved regardless. This reduces the file size by a factor of several, typically. This will be improved with further use of oaAnalysis
Freeze information:
Freeze the current version of oaAnalysis in preparation to use oaEvent v5. This new frozen version (v1r5) has only very minor changes from the previous freeze. The changes between this and the previous frozen version are very minor.
Freeze information:
Put oaAnalysis into the ND:: namespace, and adapted to other packages' move into ND:: Removed TP0DECALReconModuleA Changed some spelling Other minor fixes
New application file oaAnalysis.cxx and executable OAANALYSIS.EXE, which are compatible with the standardised interface requested by the Steering Task Force
Freeze information:
A provisional release, in preparation for a more definitive release to happen presently.
Tidied up the code in general, removed classes made redundant by recent additions, and revised the documentation to remove out of date sections.
The output is not ready for full scrutiny yet, as improvements are on their way, but this release should help the Steering group to test running oaAnalysis and storing the output files.
Freeze information:
Lots of changes, to both the oaAnalysis file creation side and the readout macros.
oaAnalysis Modules: now are saved in directories with names like ReconDir/Modules/TrackerMod and are expected to save any utility parameters in themselves as persistent data members. TTrackerReconModule now saves the boundaries of the FGDs inside itself, and then these can be accessed later on. A special member function ProcessFirstEvent is called, when the module knows about the geometry and is handed the first event, which is a good time to fill itself with information about the run and events.
Readout macros: A Python macro runAnalysis.py is included, which does the dirty work of setting things up for an analysis run. It calls an example python module, myAnalysis.py (which can be changed on the command line), which chooses the oaAnalysis modules to load and actually performs the analysis.
This is all performed without referring to any external libraries. Everything needed to read the oaAnalysis files is contained within the macros directory, and doesn't need to be setup or compiled.
macros/AnalysisTools contains TTrackerAnalysisUtils, which is an example of analysis tools that are expected to be shared across analyses. It is compiled by ROOT using ACLIC, and can be called from python or from C++.
The tracker CCQE analysis is included in C++ form, as an example, although this need to be cleaned up to use the same tools library as the python version.
Freeze information:
Final freeze of oaAnalysis before the Valentine's Day User Release of the software (codename "handover").
Only minor fixes from the previous version, to remove some rough edges, of which quite a few still remain.
Freeze information:
Minor changes to the P0D recon module. Complete revamp of the TTrackerECALReconModule, put in by Ben Still. This is now adapted to use the latest ecalRecon output. It may not be perfect yet but output is usable. More modifications to the readout scripts are on their way, but have not been put in for this freeze.
Freeze information:
Added several utilities for reading out the oaAnalysis files. These include neutrino generator utilities to help interpret information related to neutrino generators. A python script ccqeAnalysis.py has been added, which is run with $ ./runAnalyses.py -a ccqeAnalysis oaanalsisfile.root which emulates the CCQE analysis by Thomas Lindner et al. This is not validated yet and is included as an example.
The readout macros are usable for actual analyses, although more code clean-up and addition of utilities is necessary.
N. McCauley, Freezing for Y Uchida, who's having problems with the scripts.
Freeze information:
This is mainly a bugfix release for TTrackerECALReconModule.cxx The bug was causing a crash in RunOAAnalysis.exe
Another change is that the requirements file now makes doxygen look for *.py files for make documentation
This is accompanied by a configuration change for Doxygen in nd280Policy which makes it search for *.py files too.
N.McCauley for Y.Uchida who is having problems with the freeze script.
Freeze information:
New userAnalysisBase class from which user analyses can be derived. Updates to runAnalysis.py script to use userAnalysisBase.py. These contain various features that are commonly used by analyses, and make it very easy to put an analysis together. Example analysis script ccqeAnalysis.py.
New configuration option for TTruthTrajectory to turn off / on the saving of all trajectories, where the default is to save only those which intersect the P0D, Tracker, or ECAL. The file size with TTruthTrajectory is now only 20% larger than with it disabled, rather than a factor 10 larger.
TTruthTrajectory is now enabled by default.
Fixes to the NEUT, GENIE and NUANCE analysis utilities, to be properly derive dfrom TVNeutrinoGeneratorAnalysisUtils
Improved handling of oaAnalysis output module configuration, including a Configure function in the base class, which is called from TAnalysisLoop (and hence RunOAAnalysis.exe) using the command line syntax -O TTruthTrajectory=SaveAll and similar
Rewrite of documentation, including mainpage to conform to Documentation Task Force template
N. McCauley Freezing for Y. Uchida.
Freeze information:
Incorporated run-level info transfer from the analysis output modules to the read-out utilities via the oaAnalysis files. Previously, TTrackerAnalysisUtils had some geometry-related numbers hard-coded in, such as the FGD boundary positions. Now, it loads in the TTrackerReconModule saved in //ReconDir/Modules/TrackerMod in the input oaAnalysis file, and keeps it in memory. TTrackerReconModule has some data members for these numbers saved, so TTrackerAnalysisUtils can access them. The constructor for TTrackerAnalysisUtils has been updated to look for the module in any of the input files and to read it in.
This is the recommended way for important numbers which don't change event-by-event (geometry boundaries, reconstruction parameters) to be passed to the analysis read-out macros.
Removed AllTrajectories from TTruthTrajectoriesModule, although a version which should work once we upgrade to ROOT 5.19/04 is left as commented out code. Also removed the obsolete comment saying that TTruthTrajectoriesModule output is too large. It isn't any more because we only save trajectories intersecting the P0D, Tracker, or ECAL since the last release.
Added the header file macros/AnalysisTools/vectorTLorentzVector_Dict.h, which allows std::vector<TLorentzVector*> objects in the TTree to be read out from python straightforwardly (as they ought to be)
Other minor improvements, and modifications of the sample analysis scripts runAnalysis.py and ccqeAnalysis.py to accommodate above changes
N. McCauley freezing for Y. Uchida.
Freeze information:
A bug fix release to oaAnalysis For use in the new nd280 release. N. McCauley for Y. Uchida We need a fourth line to keep the script happy.
Freeze information:
Major additions to oaAnalysis, mostly by, or inspired by, Christian Hansen.
Added cheatingAnalysis.py, to emulate the truth-based CCQE analysis Christian did a couple of years back.
Addition of extra output variables in TTruthTrajectoriesModule, which allow the cheatingAnalysis to see which detectors any trajectory passed through.
macros/AnalysisTools/TCheatingAnalysisUtils*, to provide tools to assist cheatingAnalysis.py when reading out analysis files.
Improvements to the analysis macro base class, userAnalysisBase, to print out efficiency / purity plots automatically by default.
Minor bugfixes.
Documentation fixes and improvements.
N. McCauley, freezing for Y. Uchida.
Freeze information:
Christian added a TEMPORARY SOLUTION to get macros/doCcqeAnalysis.C to work again, but with the (ideally) deprecated tracker_utilities.C instead of macros/AnalysisTools/TTrackerAnalysisUtils.cxx which doesn't work with it for an unknown technical reason.
TFGDIsoReconTOATrackModule added by Melissa, which summarises the output from fgdRecon of tracks that aren't connected to TPC tracks. This operates on the ToaTrack version of fgdRecon.
TFGDIsoReconTOATrackModule is the first module to save simple diagnostic histograms within itself, which can be browsed to check that things were filled correctly, as suggested by Melissa. Similar histograms should also be put into the other modules.
Minor change to TAnalysisLoop to save the modules in their own directories, instead of directly inside "/Modules". TBrowser seems to have a problem otherwise. Other minor changes to accommodate this.
Cleanup of module data member names, to make them all consistent. This is explained in the documentation.
Improvement to runAnalysis.py, which now always writes a file "oaAnalysisReadInit.C", which can be executed in ROOT to manually initialise it for browsing oaAnalysis files.
N. McCauley Freezing for Y. Uchida
Freeze information:
A freeze for the last version to support event files with TOATrack output, which depends on oaEvent v5*.
oaAnalysis v3* will move fully to the new TRecon* classes, although it would be nice to resurrect TOATrack just for backwards compatibility purposes.
Some of the macro/ code needs cleaning up, but that will be pursued in the v3* releases, where they will most likely be used. Bugs that are found there should be back-ported to this release as patches.
Freeze information:
A snapshot of the current developmental oaAnalysis, which is undergoing some changes. Various analysis macros have been added, and for now, the TOATrack-dependent modules have been disabled, although they will probably be re-enabled soon.
A new module GlobalReconModule has been added.
oaAnalysis will undergo clean-up in the near future.
Freeze information:
Addition of new TP0DECALReconModule, TGlobalReconModule, TTrackerReconModule By, Ben Still, Anselmo Cervera, Melody Ravonel respectively, with help from others. Thanks Anselmo and Thomas Lindner for testing and bug fixes.
Will go into a consolidation phase after this.
Freeze information:
New code in macros/, committed by Melody, which represent the current muon CC analysis. Also forgot to mention in the previous freeze history (for v3r3) that there are macros/ contributions Melissa (electron CC), Anselmo (cheating CC), and some bugfixes by Thomas.
Freeze information:
Snapshot freeze for May 2009 nd280 software release.
Uses oaEvent v6r* Had to remove some code in macros/AnalysisTools, because they were not complete (missing variable declarations etc)
Adapted to TVInputFile in oaEvent
Strictly enforcing the disabling of modules when the input algorithmresults that they need are not in place.
Big improvements to TTrackerECALReconModule by Tom Maryon, where showers and clusters are treated equally and their separation made into an analysis macro-level decision. The old TTrackerECALReconModule has been renamed TTrackerECALReconModule_v1
Improvements to TTrackerReconModule too
Freeze information:
Snapshot freeze for MC generation release, June 2009.
Major changes to the TP0DECALReconModule and the TTrackerReconModule and bugfixes to TTruthTrajectoriesModule and the TTruthVerticesModule
Really good changes, and bugfixes, these.... Really good.
To reiterate, major changes to the TP0DECALReconModule and the TTrackerReconModule and bugfixes to TTruthTrajectoriesModule and the TTruthVerticesModule
Freeze information:
Snapshot re-freeze for MC generation release, June 2009. Re-freeze due to Yoshi messing up the freeze for v3r9. Differences compared to v3r7 are:
Major changes to the TP0DECALReconModule and the TTrackerReconModule and bugfixes to TTruthTrajectoriesModule and the TTruthVerticesModule
Freeze information:
Snapshot freeze for MC generation release, Nov 2009.
Main changes to modules: Have added TGRooTrackerVerticesModule that copies over the generator pass-through info into a GRooTracker event object. This means now have access to full generator level information at oaAnalysis stage. Note that at present this is only implemented for MC that uses GENIE as input, expect to implement a similar module for NEUT in near future.
Changes to the macros: Many small changes to analysis macros have been made. Also a number of new analysis macros have been added.
Generally some minor bug fixes.
Freeze information:
Freeze of oaAnalysis so that it can be included in the upcoming nd280 release. The major version number has now been incremented by one.
Main changes since last freeze:
Freeze information:
This freeze is for the upcoming software release.
The main changes are to the AnalysisTools so that it is now possible to compile and generate libraries using the runAnalysis.py script with the -c option. This functionality was broken in previous versions.
This means that the python analysis scripts, such as ccqeAnalysis.py, should work. Also the root macro scripts still work.
Freeze information:
Main changes in this freeze are:
- Modifications to TTrackerECALReconModule to make it work with latest versionof ecalRecon.
- Dealt with problem of dereferencing NULL THandles when there are no G4Primaryvertices in an event.
- New versions of tracker reconstruction utilities. - New verions of global reconstruction module and utilities. This has alsointroduced a dependencey on oaRecPack.
- Modified the way in which modules and their trees are saved to avoid writingof left over memory resident trees.
Freeze information:
Removed a memory leak introduced in the last freeze. Involved reverting to original way in which modules were saved. This is all that has changed.
Freeze information:
Freeze for rolling release of nd280 software. The main changes included in this freeze are:
Freeze information:
Freeze in preparation for upcoming nd280 release. Main changes are:
Freeze information:
A minor freeze to include changes to the P0DReconModule. Also a couple of fixes to make AnalysisTools compile.
Frozen by Ian Taylor, because Jim was having local computing problems
Freeze information:
Incremental freeze of oaAnalysis for use in the middle-pass processing which includes bug fixes to the P0DRecon module and also preliminary fixes to the trackerRecon module which was broken in the last version.
Freeze information:
Incremental freeze in preparation for the upcoming MCP1 release of the software. Features added for this freeze include:
There have also been lots of fixes to the TTrackerReconModule and a number of small bug fixes to quite a few of the packages.
This freeze will act as the version for which testing will be done before the final MCP1 release. If any bugs are found a further freeze will be made.
Freeze information:
Incremental freeze for upcoming MCP1 release.
Changes since last freeze:
Freeze information:
Freeze of oaAnalysis for inclusion in upcoming nd280 patch for MCP1. Mainly bug fixes for problems found with the initial results of MCP1. Changes and fixes include:
Freeze information:
Freeze is mainly to capture a version of oaAnalysis that works with oaEvent v8r3; as well as to add beam summary and data quality flags.
Other changes include:
1) Additional node information for Tracker Recon Module.
2) Additional variables for Tracker ECAL Recon Module (thrust+length).
3) Changes for pass-through code to adapt to 10a flux files.
4) Addition of alternate TPC-only matching (ie Saclay analysis) to Tracker Recon Module and T2010aAnalysisExample1Module
Freeze information:
Freeze to capture latest version of oaAnalysis and to be used with the upcoming nd280 release (v8r5). In addition to many bug-fixes and the lots of new variables being added to many of the modules the main changes since last freeze include: 1) TGlobalReconModule implements extrapolation to subdetectors. 2) Addition of 2010a analysis module. 3) Trigger word and CTM header information added to the TBasicHeaderModule. 4) BSDChecker.cxx application added to check that beam summary data is being correctly attached.
There has also been a change in the structure of the macros directory as it was getting very crowded, making it difficult for users to see the examples clearly. Now there are two additional folders in the macros directory: the deprecatedMacros folder and the officialMacros folder. The deprecatedMacros folder is for macros which do not work or have currently not been validated - for the moment this is where all the existing macros have been moved (this is not to say that they all have problems just that we need to go through them one by one, and validate them, before moving them out). The officialMacros folder is for more finalised macros which can be used as examples by other people who are learning about oaAnalysis and also as a possible place to store any analysis macros which may be being used for official results.
Temporarily this freeze excludes the oaBeamData module as a hack to stop a strange seg fault. As soon as a solution is found the oaBeamDataModule will be added ASAP.
Freeze information:
Freeze for upcoming release of nd280. Main changes since last freeze are:
Freeze information:
New freeze for patch release of nd280 software. Only changes since last freeze are:
Freeze information:
New freeze of oaAnalysis for inclusion in the upcoming patch release of the software. The only difference between this freeze and the last is that TGlobalRecon module has been updated to fix a few bugs which were being seen.
Freeze information:
Incremental freeze with the following changes:
These changes will be backported into a patch for RDP3.
Freeze information:
A preliminary freeze of oaAnalysis to use for implementing the analysis file size reduction following the software meeting. Changes include: Updates to the TrackerECal module to use the new geometry and to store Kalman fitter variables. Additions of the Kalman fitter PID variables for the Ecal track/shower hypothesis to the GlobalReconModule. Update the BasicHeaderModule to store the software version if requested from the command line, and correctly stores run and subrun numbers for data. TExample2010aAnalysis1Module has now been disabled by default.
Freeze information:
A new freeze of oaAnalysis for the next data production. The improvements from the last version include:
Freeze information:
A new freeze of oaAnalysis with many large changes from the previous versions, resulting in an increase to version 5.
This version now has much improved organisation of the Truth modules, with different structures and no duplication of information. This change has been propagated through to the truth information stored by the global reconstruction module. Now, the global recon module stores the unique ID of every truth trajectory or vertex that it matches to a reconstructed object. These IDs can be used with the TruthUtils analysis tool in nd280AnalysisTools to gain access to all the truth information stored for a given trajectory or vertex.
This change will cause all previous analysis code to break, as the structure of the Truth modules has changed.
The macros/ and data/ directories have also been emptied, as these have been copied over to the nd280AnalysisTools package.
There has also been a few improvements to other modules, notably the missing context information is now present in the BasicHeader module.
Freeze information:
Interim freeze of oaAnalysis for verification of the recent reconstruction changes Notable changes include:
Incremental improvements to most modules Addition of TrackerECal Pi0 analysis module - currently disabled as it is not compatible with the rest of the software Removal of NeutGenieIdx from TTruthVertices module, replaced in RooTrackerModule with the TruthVertex ID All trajectories in a chain are now saved.
There will be another freeze before the Production 5 release
Freeze information:
An interim freeze of oaAnalysis to allow further development of the ND280 reconstruction.
There is a work-around in the TGlobalReconModule, commented in the code, for bug 569 which will have to be re-examined before a production freeze of the software. Also, RunOAAnalysis.exe seems to be running much slower than previously, which may be due to reconstruction changes. This will be investigated before the production freeze.
In this freeze there are improvements to the GlobalRecon and GRTF analysis modules alongside small changes to the SmrdRecon and TrackerECalRecon modules
Freeze information:
An interim freeze before production 5 with all major changes added
Addition of the MC intensity to the basic header module Change in the beam summary module to use the new singleton implementation of TRawBeamData.
The global recon module now stores the unique ID of each sub-detector recon object that it includes in a global object.
The ECal recon and P0D ECal recon modules now store this same unique ID for each object they save, as does the P0D recon module. This should allow matching between the global recon object and the sub-detector objects that form it.
Warnings about hidden methods and so on have been removed
Freeze information:
This is a freeze of oaAnalysis for production 5. It incorporates numerous bug fixes, most importantly there have been changes to:
TGlobalReconModule - Bug fixes and validation of data members
TTruthTrajectoriesModule - Optimisation and bug fixes
TAnalysisModuleBase - Setting the TTree AutoFlush parameter to 3Mb, rather than 30Mb, to solve bug 386
Freeze information:
A new freeze of oaAnalysis incorporating bug fixes in the P0D recon module.
There have also been additions to the ECAL recon module and default value setting in the Global recon module
Finally, there is a new option, -O production, that will cause RunOAAnalysis.exe to throw an exception if there is no RooTracker information present when processing MC files
Freeze information:
A new freeze of oaAnalysis incorporating the fixes for Bug 661, updates to the oaAnalysis PDG table and the addition of three new variables to the TrackerECalReconModule describing the extent of reconstructed clusters.
The fix to bug 661 means that the P0D now has correct truth matching for all its reconstructed objects The updated PDG table contains details on some ion isotopes that appeared after the nd280mc change (though they may have been present before and just not noticed) The new ECal variables allow the extent of a cluster to be fully described in the oaAnalysis files
Freeze information:
A new freeze of oaAnalysis for production 5B. This contains:
Fix to GeometrySummaryModule to handle incorrect GeometryIds Addition of CosmicPreScaleWeight, P0DWaterStatus, Geometry Hash and Alignment Hash to BasicHeaderModule Fix for Bug 672 in P0DReconModule New Truth Matching algorithm results in TTrackerECalReconModule Fix Global-Subdetector IDs in P0D and ECal modules (Bug 667) Truth information saved for 2D objects in TTrackerECalRecon module
Freeze information:
oaAnalysis freeze for production 6 (1st attempt). First freeze sinze the reconUtils migration. As a result many modules needing updating to conform to the migrated functions. PDG table updated to include missing genie Ions. In TrackerECalRecon, Radon transform results are now stored. In GlobalRecon, the TPC momentum refit information is now stored.
Freeze information:
Re-freeze to accomodate the momentum-by-range hypotheses and how to store them (using the reconUtils function GetTRealDatumValue) Added three new TPC variables to the GlobalReconModule for production 6 When saving the uniqueID of a constituent, the original uniqueID is also saved. This allows constituents from the global module to be matched with the GRTF module.
Freeze information:
Freeze for moving towards production 6.
Check added to see if a true vertex is a geantino vertex before reporting a mis-match. This logic is performed in a new function called IsGeantinoVertex(ND::TG4PrimaryVertex). Fix of nasty bug which causes duplication of the penultimate event. This happens when the last event contains no neutrino vertex, however the truth variable reset was performed after checking the existence of the vertex. The reset now happens before the vertex check.
Changed back end of variables which have the official POT/spill, POT/bunch, beam timing, bunch flag, and spill flag. Added spill flag for official timing to make this work. Correct CT5 bunch timing; CT5 variables are bieng kept at the moment for some backwards compatability reasons for code, but should be rid of either for Production 6 or the first reprocessing after prod. 6.
Include calculations of Vertex and End Activities for FGD for global Front and Back positions. Fill Vertex and End Activity variables also for Entering and Exiting positions to FGD. Add flag which discriminates between real beginning/end of track and its entering/exiting positions.
The production 6 test module for the global Recon has now been removed (reducing space used by ~40Mb).
All 1D arrays in the NRooTracker module are now dynamic. Due to the way the information is retrieved from the numc file, this required temporary duplication of member variables, however the duplicates are not saved to the final analysis file.
Freeze information:
TGlobalReconModule: Removal of deprecated class TFGDCluster. Addition of variables TPCLength, NNodes, KalmanFitType, PDist and PEField to TPCObjects.
TTrackerECALReconModule: Check for existence of radon information before attempting to fill the tree. If no such information exists, fill the data members with default values.
NOTE: THIS FREEZE DOES NOT FIX THE MAKEPROJECT BUG (939) KNOWN IN v11r15
Freeze information:
Every globalObject now includes a set of node times. The node times are stored on a sub detector basis. They are stored as a vector of pairs, the pairs of which are made up of a detector number and a TVector2. The TVector2 stores the times of the edge nodes for that subdetector.
Update the validation scripts to reflect the dynamic compilation of nd280AnalysisTools (which now uses $CMTCONFIG magic for compilation).
Small update to use correct TRealDatum names for momentum by range.
The PID and sense alternates have now been propagated to oaAnalysis.
Freeze information:
Freeze for production 6
Corrected the filling of new tpc variables PDist and PEField in GlobalReconModule
Freeze information:
Freeze for production 6.
TGlobalReconModule: The correct name is now used to fetch the globalVertex container. IsTrackLike() is no longer used in ComputeTrackLength() as it was found to be causing crashes during testing. Explicit checks of object types are now used instead.
Freeze information:
This is the first oaAnalysis dev FREEZE towards P7.
This could be my first successful FREEZE message.
Major Changes:
Coallated commit messages for this FREEZE follow:
ToaAnalysisUtils.{c,h}.xx
TTruthTrajectoriesModule.{c,h}xx
TTruthVerticesModule.{c,h}xx
Adds new files TTRExReconModule.cxx, TTRExReconModule.hxx
TBasicHeaderModule.cxx, TBasicHeaderModule.hxx
TGlobalReconModule.cxx, TGlobalReconModule.cxx
TP0DECALReconModule.cxx, TP0DECALReconModule.hxx
TP0dReconModule.cxx, TP0DReconModules.hxx
TSmrdReconModule.cxx, TSmrdReconModule.hxx
TTrackerECALReconModule.cxx, TTrackerECALReconModule.hxx
Adds Vertexing Information:
TNRooTrackerVtxModule.cxx ,TNRooTrackerVtx.cxx, TNRooTrackerVtx.hxx
Freeze information:
Significant FREEZE. What might be known as a "big 'ol update". Version bumpin'
The HEAD has been procedurally improved and used for normal analysis tasks over the past two years by me (for ECal as target analysis) and the TRex group. As such, even though there are significant changes, it should be comparatively stable.
Major changes:
Other changes:
Freeze information:
This is nominally a freeze for P7, very few feautres over last freeze.
Interesting changes: new ECal PID quality variable passed through to analysers.
Less interesting changes: Adds two new POT counter apps, one generic and one which counts the number of ECal objects of various types per POT. Both read ND280 DQ and BSD, separation by horn current is included with a hard-coded tolerance of 10ka, which you should change if you want... 250 ka is taken as 'good' horn current which is checked on a spill by spill basis.
Freeze information:
Extensive, but largely mechanical changes to documentation lines, designed to allow the oaAnalysis files to be "self documenting".
In addition "tree variables" which are defined directly in the code , as opposed to the header files, have had additional ->SetTitle("documentation") lines added at the point that the Branch is defined, where the documentation text has been cut and paste from the corresponding header file.
In TGlobalReconModule.cxx look for ND::TIntegerDatum>("PIDID") when matching global vertex tracks back to the original global track. If not available fall back on matching by position and momentum as before.
Freeze information:
Don't set branch a branch address for hackPath and hackPattern since they exist only for the sake of TFile::MakeProject.
Three bug fixes:
TAnalysisModuleBase.cxx: fFilledConfigTree initialised in constructor TTrackerECALReconModule: fDoSaveHoughResult, and fDoVertexing initialised in constructor TGlobalReconModule.cxx: ND::TReconTrack dummy array defined to have 18 elements not 10
(Fixes bug 1502)
Freeze information:
In preparation for development for the nd280 upgrade, the official repository for this package (and all other nd280 software packages) has been moved from CVS to GitLab at git.t2k.org and it is now built by CMake rather than CMT. More information on the new CMake build can be found at http://nd280.lancs.ac.uk/devel/invariant/nd280Doc/workbook/SoftwareUserCMAKEandGIT.html.
Also, some of the packages have been renamed to make their role in the software clearer. This has affected some class and function names in the code too. For more information on the files changed by the package renaming, go to git.t2k.org/nd280/renaming.
The name of this package was changed from oaAnalysis to eventAnalysis.
Freeze information:
Minor changes applied across all packages where some references to package names are changed from the new package name to the old one to keep compatibility with old data. Also, some tweaks were made in certain places of the code to keep things to C++11 standards (or later), which is now enforced in nd280SoftwarePolicy.
Freeze information:
Includes modifications related to the upgrade detectors. Fix $Name$ and $Id$ values which had been committed filled in or left out completely.