KaliVeda
Toolkit for HIC analysis
|
Last update: 2nd April 2024
See full list of commits here
See milestone 1.14.2 for issues (bugfixes & enhancements) associated with this release.
See full list of commits for tag 1.14.1 here
See milestone 1.14.1 for issues (bugfixes & enhancements) associated with this release.
See full list of commits for tag 1.14.0 here
See milestone 1.14.0 for issues (bugfixes & enhancements) associated with this release.
In addition:
Minimum cmake version is now 3.12.
A full calibration of all INDRA CsI detectors is now available for E789 data. It is based on a scaling of the total light output compared to the 2nd campaign (1994) data for Ni+Ni. When analysing the existing reconstructed data, a patch (KVDataPatch_E789_INDRANewCsICalib) is applied to update the energies and status of all particles stopping in INDRA CsI detectors.
Any particle to which this patch is applied will have new parameters:
Existing experimental datasets are now stored in repositories separate from the source code, part of the https://gitlab.in2p3.fr/kaliveda-dev/datasets group on gitlab.in2p3.fr. This means that by default, when the sources are downloaded, no datasets are downloaded and therefore no datasets are installed or defined.
In order to add datasets to the build/installation, new build options
WITH_INDRA_DATASETS
WITH_FAZIA_DATASETS
WITH_INDRAFAZIA_DATASETS
are available and should be enabled as required (see Build options). This will handle the download of the required datasets automatically when cmake
is run.
git submodule
. If, after having enabled one or more datasets, you update the source directory with git pull
, and this update includes changes to the dataset directories, you have to manually update them with a further git submodule update
command. See https://delicious-insights.com/en/posts/mastering-git-submodules/Isoscaling corresponds to the scaling behaviour obtained from the ratio \( R_{21}(N,Z) \) of the same isotope measured with two colliding systems differing in their neutron-to-proton content, \( Y_{(1)}(N,Z) \) and \( Y_{(2)}(N,Z) \), where \( (2) \) stands for the neutron-rich system.
In a variety of HIC an exponential dependence of the ratio on N and Z is observed, such as
\[ R_{21}(N,Z) = \frac{Y_{(2)}(N,Z)}{Y_{(1)}(N,Z)} = C\,exp\left[ \alpha N + \beta Z \right] \]
where \( C \) is an overall normalization constant while \( \alpha \) and \( \beta \) are the isoscaling parameters.
KVIsoscaling, contributed by Quentin Fable (quent.nosp@m.in.f.nosp@m.able@.nosp@m.l2it.nosp@m..in2p.nosp@m.3.fr), is the class used to perform the isoscaling analyses in the recent INDRA-VAMOS paper Phys. Rev. C 106 024605 (2022).
KVEventMixer is a generic implementation of the event mixing technique used to estimate the uncorrelated background for two-particle correlation functions. Events belonging to different user-defined event classes can be treated separately at the same time. Given events containing particles of type A and particles type B, it is assumed the user wants to construct some quantity which can be calculated from the properties of any pair (A,B), using both correlated and uncorrelated (mixed) pairs. The algorithm requires the user to provide:
An example of use in an analysis class is given in ExampleCorrelationAnalysis.cpp
KVSQLROOTFile is intended to solve a longstanding problem with ROOT files containing many (and possibly "large") objects: in order to make any selection of the objects based on their associated properties, or indeed just to list the objects according to their properties, requires to read into memory each of the objects in question, which can be very slow.
When objects are written to a KVSQLROOTFile, the object itself is written in a ROOT file with an automatically generated unique identifier, while a list of associated metadata (chosen by the user) is written in a separate SQLite database file (see KVSQLite::database).
It is then possible to list the metadata of all objects in the file without reading them into memory, just by consulting the SQLite database. Selected objects can also be retrieved from the ROOT file based on the stored metadata.
KVSQLROOTIDGridManager uses a KVSQLROOTFile back-end in order to vastly speed up loading of identification grids when analysing experimental data. See source code inside KVMultiDetArray::MakeMultiDetector().
New class KVMultiGaussIsotopeFit is now used by KVIDZAFromZGrid to fit PID mass spectra with a weighted sum of gaussians plus a background function. This is a huge improvement on the previous identification method of KVIDZAFromZGrid, as it allows to perform background suppression and also estimate the degree of confidence of mass identification.
It is now possible to iterate over an arbitrary selection of particles in an event using a KVTemplateParticleCondition object (KVParticleCondition is now an alias for KVTemplateParticleCondition<KVNucleus>):
Note that the type of the pointer used in the lambda function argument must match the event particle type:
Event class | Iterator wrapper | Particle condition class | lambda signature |
---|---|---|---|
KVNucleusEvent | EventIterator | KVTemplateParticleCondition<KVNucleus> | bool [](const KVNucleus*) |
KVReconstructedEvent | ReconEventIterator | KVTemplateParticleCondition<KVReconstructedNucleus> | bool [](const KVReconstructedNucleus*) |
KVSimEvent | SimEventIterator | KVTemplateParticleCondition<KVSimNucleus> | bool [](const KVSimNucleus*) |
Previously, KVTemplateEvent could only be used with KVNucleus and derived classes. This condition has now been relaxed to include the KVParticle base class of KVNucleus. As a result, the behaviour of some old KVEvent methods has changed:
New methods have been added which return KVNucleus pointers:
If the event does not contain particles derived from KVNucleus, these methods return nullptr
:
[Data Analysis Infrastructure]
KVDataQualityAudit is a simple class which can contain many essential informations about experimental data identification and calibrations, which can be used:
Data can be audited using the new dedicated analysis task, "Prepare data quality audits", run by KVDataQualityAuditSelector. We provide also KVDataQualityAuditReportMaker to help with the production of graphs and histograms from the audit.
The following improvements have been made:
Including:
[Modelling and Simulation Tools]
In the KVGemini interface to the GEMINI++ statistical decay code, we now add systematically any rotational energy of the nuclei to deexcite to their internal excitation energy (which normally only accounts for thermal excitation) before calculating the decay. This is because GEMINI++ expects \(E*=U+E_{rot}\) and subtracts \(E_{rot}\) from \(E*\) in order to calculate the thermal excitation energy \(U\) available for decay. To ensure consistency the \(E_{rot}\) added by KVGemini is calculated according to the GEMINI++ prescription.
See methods KVGemini::DecayEvent() and KVGemini::DecaySingleNucleus().
In the C++ standard library, containers are generally used to store values and objects whose type is defined at compile time through template parameters: std::vector<int>, std::unordered_map<std::string, std::thread>, etc.
In ROOT (and in KaliVeda), containers such as TList handle pointers to objects which may be of any type derived from TObject, and the actual type of the objects in any list is usually determined at runtime.
A great advantage of the standard containers is they provide iterators which make it possible to loop very simply over their contents, with a range-based for loop:
The type of the auto v
variable is the type of the objects in the vector (int
in this case).
STL-style iterators were already added to KVEvent some time ago to enable the use of range-based for loops with all event classes, but they had the following small drawback:
This code would not compile, because although we would expect n
to be of type KVReconstructedNucleus&
, in fact for all event classes the iterators returned base class references KVNucleus&
.
This has now been resolved by realising that the event classes are in fact STL-style containers for particle/nucleus types: a KVReconstructedEvent contains KVReconstructedNucleus objects, a KVSimEvent contains KVSimNucleus objects. Regarding the original KVEvent base class for all events, it is now an abstract base class and KVEvent objects cannot be instantiated. An event of KVNucleus objects is now called KVNucleusEvent - this could be a major code-breaker but was necessary to ensure backwards compatibility (still able to read existing data).
See Nuclei & Events for a full explanation of how to use the new event classes and iterators.
[Data Analysis Tools Infrastructure]
On multicore machines, PROOFLite can be used for analysis of any data contained in a TTree (e.g. reconstructed data). However raw data is usually contained in some other type of file and PROOFLite cannot be used. New "batch" system KVXtermBatch has been developed to remedy this.
When analysing or reconstructing raw data not contained in a TFile on a multicore machine, KaliVedaGUI will automatically switch to the new batch system in order to exploit all cores of the PC. When N runs are to be analysed on an M-core machine, this batch system will run M jobs concurrently with the N runs shared as evenly as possible among the jobs.
Changes in FAZIA Data Analysis : Bugfix for raw FAZIA data analysis
When analysing raw FAZIA data, detectors were not reset before reading a new event, leading to a steadily increasing number of fired detectors with each new event. A small change to KVMultiDetArray::prepare_to_handle_new_raw_data() fixes this.
Starting from v1.12/05, we require a minimum ROOT version of 6.18, minimum cmake version 3.5, and a compiler (the same as that used to compile ROOT) with at least support for C++14.
[INDRA-specific Data Analysis Tools / FAZIA Data Analysis / INDRAFAZIA Data Analysis]
New symbolic names (enumerations) have been added to clarify the meanings of the different identification and calibration codes for reconstructed particles detected in different arrays. See KVINDRA::IDCodes and KVFAZIA::IDCodes.
There are also some new methods to facilitate selection of appropriate codes for analysis of data in user's KVEventSelector::InitRun() method:
{}
to enclose the list of values.FAZIA trigger conditions for each run of E789 have now been implemented. Calling SetTriggerConditionsForRun() in the InitRun() method of an analysis class used on E789 data will now reject any event which does not have a FAZIA trigger bit pattern compatible with that which is expected for the data.
In concrete terms, this means that for analysis of physics runs (for which FAZIA trigger conditions were "M>=2" and "M>=1" downscaled by 100), only events for which the "M>=2" trigger pattern fired are accepted. Note that for the FAZIA trigger pattern to be acceptable, FAZIA must be part of the event, i.e. we also reject the (very rare) spurious cases where only INDRA is present.
See KVFAZIATrigger, KVINDRAFAZIAE789TriggerConditions, KVFAZIA::SetTriggerPatternsForDataSet(), KVFAZIA::GetTriggerForCurrentRun(), KVFAZIA::ReadTriggerPatterns.
A KVDummyGV can be added to a KVGVList of global variables, not to calculate anything, but just to perform a selection of events with the KVVarGlob::TestEventSelection() mechanism.
To use, simply add a KVDummyGV to the list of global variables in your analysis, and define the required event selection by calling method KVVarGlob::SetEventSelection() with a lambda function having the required 'bool (const KVVarGlob*)' signature.
Bugfixes
As part of ongoing efforts to make analysis classes more flexible and efficient, it is now possible to use the same analysis class to analyse several different types of data. Any analysis derived from KVReconEventSelector (generic reconstructed event analysis class) can now be used:
Rejection of reconstructed events which are not consistent with the online DAQ trigger of each run is now handled by a new class KVTriggerConditions. This is in order to be able to handle situations which are more complicated than a simple minimum global multiplicity.
In analysis classes, the rejection is handled by calling KVEventSelector::SetTriggerConditionsForRun() in the InitRun() method of the analysis class. This replaces the condition
which was previously used at the beginning of the Analysis() method. The new mechanism is implemented by default in the new examples and templates for automatically-generated user analysis classes. For the moment, trigger conditions for INDRA data are handled; the implementation for other data will follow shortly.
Modification required to plugin declaration for any user-defined global variable classes, constructor with const char*
argument (variable name) must be used, like so:
Global variables in a KVGVList can be used to define new kinematical reference frames which are available for all variables which come later in the list.
As an example of use, imagine that KVZmax is used to find the heaviest (largest Z) fragment in the forward CM hemisphere, then the velocity of this fragment is used to define a "QP_FRAME" in order to calculate the KVFlowTensor in this frame:
Event selection can be performed automatically based on the values of the global variables in a KVGVList. This is implemented for example in KVEventSelector, the base class for all analysis classes. This can improve the speed of analyses, as the conditions are tested for each global variable as soon as they are calculated, and processing of the event aborted if it fails. Variables used for event selection should added to the list of gobal variables before any others in order to optimise the speed of analysis.
For example, to retain for analysis only events with a total measured charge in the forward c.m. hemisphere which is at least equal to 80% of the charge of the projectile:
Added STL-style iterator to KVNameValueList. It is now possible to do the following (with C++11 support enabled):
Previously, there was much source of confusion as different variables could have specific ways of defining which nuclei they would include, in which frame, etc., while the base methods of KVVarGlob for defining particle selection and kinematical frames were not always respected by all classes.
Now, the same logic is applied to all global variable classes:
As an example, consider the KVEtrans variable, which calculates the sum of transverse kinetic energies for each event. Without writing a new class, the same variable can be used in very different ways:
In addition, as part of this rationalization, all existing global variables calculating multiplicities, or sums or mean values of scalar quantities have been reimplemented using KVVGSum, which vastly reduces code replication.
All 'Av' variants (calculating various multiplicities or sums in the "forward" hemisphere) have been removed, as they can all be implemented using existing classes just by applying particle selection criterion
and optionally defining the correct frame in which to apply it:
Removed classes : KVZboundMean, KVTenseur3, KVTensP, KVTensE, KVTensPCM, KVMultAv, KVMultLegAv, KVMultIMFAv, KVZtotAv, KVRisoAv
ALL EXISTING USER GLOBAL VARIABLES NEED TO BE REWRITTEN TO RESPECT THE NEW FRAMEWORK
Changes to KVEvent::Iterator
KVParticleCondition has been extended to use lambda expressions (if KaliVeda is compiled with ROOT version 6 or later)
The lambda must take a const KVNucleus*
pointer as argument and return a boolean:
Note the first argument to the constructor is a name which the user is free to define in order to remember what the condition does.
Like any lambda expressions, variables can be 'captured' from the surrounding scope, which can be useful in some situations. For example, given the following definitions:
then the limit for the selection can be changed dynamically like so:
Released: 9th March 2020