![]() |
AliPhysics
d497afb (d497afb)
|
Switching to the EMCal correction framework is a straightforward process. It should be possible to configure with your desired settings in less than an hour.
If you plan to test and verify that everything works the same (which we strongly encourage!) be certain not to delete your previous corrections yet!
Follow the same procedure as described on EMCal Correction Framework.
To test and verify the changes, we have a general procedure, as well as tools to help verify automatically. NOTE: This procedure is oriented towards using EMCal Containers. If you do not use EMCal containers, this will only be a rough guide!
The general procedure is as follows:
First, you must add some additional options to your run macro. In particular, we need to configure the EMCal Corrections Framework to copy cells, clusters, and tracks to ensure that the two sets of corrections do not interfere with each other. This has two simple steps:
To enable side-by-side testing, we will need to setup the copy of branches before setting up the EMCal Correction Framework AddTask and the old correction framework AddTask (ie. this code must be executed before the Correction Framework AddTask and before the old correction framework AddTask in your run macro or LEGO train). This is required to ensure that the two correction frameworks do not interfere with each other. To copy the proper input objects, use something like the code below (be certain to set IsEsd
as appropriate):
The names in newBranchName
determine the name of the new branches. In principle, this could be anything, but we strongly recommend using the "usedefault" name and then adding "New" onto the end. So for AODs, it would be "emcalCellsNew" for cells, "caloClustersNew" for clusters, and "tracksNew" for tracks.
Before beginning, be certain to read the introduction to YAML and configuring corrections available here.
You can map the current corrections to the new ones with the following table. Note that each new correction is preceded by the name AliEmcalCorrection
:
Current Correction Name | New Correction Name |
---|---|
Tender | CellBadChannel |
CellEnergy | |
CellTimeCalib | |
Clusterizer | Clusterizer |
ClusterMaker | ClusterExotics |
ClusterNonLinearity | |
ClusTrackMatcher | ClusterTrackMatcher |
HadCorr | ClusterHadronicCorrection |
Using the table above, we need to make sure that the current and the new corrections are configured the same. Compare the settings in your run macro with those in $ALICE_PHYSICS/PWG/EMCAL/config/AliEmcalCorrectionConfiguration.yaml
, known as the default file. In particular, check that each parameter value in the YAML file matches the value for that variable in your run macro (and not the other way around – it is okay if there is no matching field for every field in the AddTask). The variable names should often be the same. If values are different in the YAML file, then modify the values in **userTestConfiguration.yaml
**, not in AliEmcalCorrectionConfiguration.yaml
! To make the change, write it in yourself or copy the relevant structure of the default file to your user file and modify there. For instance, in the default file, the cellE
parameter in the Clusterizer is to 0.05
. If I wanted to change that in the user file, you would add:
Any setting that you have in the user file will override the default file!
In addition to determining the proper correction settings, the input objects need to be changed slightly. In parituclar, we need to change the branch names to the names defined when copying objects (described above)!
Configure your analysis task to run twice - once with the current corrections and once with the new corrections. To do so, configure your task once with different cluster and track (if needed) containers. Note that if you use jets, you need to run the jet finder twice - once for the old framework, and once for the new framework. For example, if you run on AODs, and set your cluster and track containers in run macro using "usedefault", then it would look something like:
Note**: If you don't use the "usedefault" pattern, then you'll have to set the names manually. You should just set the tracks and clusters names as usual.
When running the tasks side-by-side, we are forced to use non-standard input object names (such as "tracksNew"). If a task implements the "usedefault" pattern then it will likely not handle the non-standard track names properly - it will create a track container for the standard name and a particle container for the non-standard name. This will almost certainly lead to disagreements, so it needs to be fixed! To fix it, you will need to remove the particle container and add a new track container based on the (for example) "tracksNew" branch. In code, it will look like,
Some example tasks for which this applies include the jet finder, the EMCal sample tasks, and perhaps even your own analysis task!
You are all set! Now run the run macro as normal. Once it is finished, we have a python script to compare the output histograms automatically. It is available here (you may need to right click -> Save Link As..). To run it, you need to pass the path of the AnalysisResults.root
file, as well as the name of the output list from your task that was generated with the new corrections. For example,
If you don't know the name of your output list, just pass an invalid name to the -n
argument and it will show you the available options:
In exceptional cases, you will need to pass the name corresponding to the name of the output list from your task that was run with the current corrections. If needed, the script will inform you. For example,
If the outputs do not match initially, please double check your settings! If they still do not match, then consider running a statistical bin-by-bin comparsion. To do so, use the -s
option:
When running this statistical test, you can set the threshold for the fractional disagreement using the -t
option:
After all that, if they still do not match, then please let us know!
Help for the script is available with python compareHistos.py --help
. (If you are using aliBuild, you may need to set your $PYTHONPATH
variable. In bash, you can do this by setting export PYTHONPATH=$ROOTSYS/lib:$PYTHONPATH
. Other shells may vary.)
Testing is very important, but it can take a few iterations to get all of your settings right! If they don't match the first time, check your settings again closely. It is often helpful to test locally with a relatively small number of events (perhaps ~1000) to allow rapid iteration. Anecdotally, we have observed the time cuts, non-linearity function, and clusterizer type to cause many of the issues. In addition, a few defaults were updated in the EMCal and EMCal-Jet sample tasks that are work checking. Those values include:
Settings | Previous value | New default | Reason for change |
---|---|---|---|
cell time cuts | +/- 50 us | +/- 1 | Clarify they are off by default. This can make a difference in some periods! |
Non-linearity function | kBeamTestCorrected | kBeamTestCorrectedv3 | Update in EMCal Analysis Recommendations |
Mass for track prop | Pion mass | PID mass hypothesis | Experts decided this was the best setting |
Point for track prop | Vertex | DCA | Experts decided this was the best setting |
Lastly, please note that due to small differences in the Tender clusterizer and the New Corrections Framework clusterizer, exact agreement may not be possible. However, the differences should be very small. Note that this does not apply to the standalone clusterizer (where perfect agreement is expected)!