Feature #1036
Implement energy resolution
Status: | Closed | Start date: | 12/10/2013 | |
---|---|---|---|---|
Priority: | High | Due date: | ||
Assigned To: | Forest Florent | % Done: | 100% | |
Category: | - | Estimated time: | 8.00 hours | |
Target version: | Stage Florent | |||
Duration: |
Description
Energy resolution is one of the few (or the only) major missing piece to get correct spectral results from gammalib / ctools.
Here we can discuss how it should be implemented.
References (we probably want to stick to OGIP standards as far as possible):- Formula 7.16 in http://inspirehep.net/record/1122589
- http://adsabs.harvard.edu/abs/2001ApJ...548.1010D
*http://heasarc.gsfc.nasa.gov/docs/heasarc/caldb/docs/memos/cal_gen_92_002/cal_gen_92_002.html
Recurrence
No recurrence.
Subtasks
History
#1 Updated by Deil Christoph almost 11 years ago
We have an existing C++ implementation (using GSL via ROOT for heavy numerical lifting) of XSPEC-style forward folding with the energy resolution matrix in HESS.
The plan is to have this open-sourced on Github before the coding sprint, but in any case we can probably re-use some parts for Gammalib.
For testing we can compare to XSPEC.
#2 Updated by Deil Christoph almost 11 years ago
- Description updated (diff)
#3 Updated by Deil Christoph almost 11 years ago
Jürgen, can you briefly comment on the status in gammalib and possible sub-tasks?
Is there an RMF reader? Which classes would we work on? ...
#4 Updated by Knödlseder Jürgen almost 11 years ago
Deil Christoph wrote:
Jürgen, can you briefly comment on the status in gammalib and possible sub-tasks?
Is there an RMF reader? Which classes would we work on? ...
Nothing has really be done for energy resolution, but the structure is in principle there to plug-in a probability density function taking true and reconstructed energies as parameters. So maybe a starting point would be to implement a very simple energy dispersion function (e.g. a Gaussian), and see if we can get the code working with such a function. The code would be probably awefully slow in a first run, but can then be optimised once we get the functionality working
Work is needed here on the response side, but also on the MC side, so that we can do some testing.
Concerning RMFs, there is the GRmf
class available, and I recently added support for variable-length columns to the FITS module so that I can read the files that are currently produced by HESS. My plan is to introduce a generic XSpec observation interface, so that any data in XSpec format can be used in any GammaLib analysis. This should also support energy redistribution, which would be easier as it’s just a multiplication of matrix elements to a data vector.
- implement a class derived from
GCTAEdisp
(for example a simple Gaussian), to be used for unbinned and binned analysis - implement full XSpec support, using the
GRmf
class for Xspec analysis
#5 Updated by Knödlseder Jürgen almost 11 years ago
- Target version set to 2nd coding sprint
#6 Updated by Knödlseder Jürgen almost 11 years ago
GModelSky::integrate_energy
: implement integration over true energyGCTAResponse
: add a method that returns the true energy integration boundaries for a given measured energy; this probably needs a similar method to be implement forGCTAEdisp
.GCTAResponse::nedisp
: implement method (integration of energy dispersion over [emin,emax] of dataspace)GCTAEdispPerfTable
: implement Gaussian energy dispersion based on rms values in performance tableGCTAResponse::load_edisp
: implement method that loads energy dispersion information (similar to load_psf()), and call this method fromGCTAResponse::load
(so far,GCTAResponse::load_edisp
is defined empty inGCTAResponse.hpp
)- Add MC sampling to
GCTAResponse:mc
I hope that’s it ...
#7 Updated by Deil Christoph almost 11 years ago
- Assigned To set to Deil Christoph
#8 Updated by Deil Christoph almost 11 years ago
Jürgen, thanks for making this list, very helpful!
We also want energy resolution in binned analysis.
Can you please also make a list of things needed for that?
#9 Updated by Knödlseder Jürgen almost 11 years ago
Deil Christoph wrote:
Jürgen, thanks for making this list, very helpful!
We also want energy resolution in binned analysis.
Can you please also make a list of things needed for that?
The changes I listed should in fact do the job for unbinned and binned analysis. But for binned you probably would like to precompute stuff beforehand so that computation is faster. Hence some additional thinking is required here. This is probably linked to issue #803 which asks for implementing a interface that is also optimized for binned analysis (so far the interfaces are only optimized for unbinned).
However, if you’d like to use the RMFs, as defined during the last coding sprint, additional work is needed. But we even have not a fitter yet for Xspec like analysis, hence when we implement the fitter we probably could do the RMFs in one shot.
Just one thing: when implementing energy dispersion we should always have the possibility to switch it off, mainly for computational speed reasons, but also for comparison reasons. Shouldn’t be complicated to implement, by maybe needs a flag that can be toggled by a specific GCTAResponse
method.
#10 Updated by Deil Christoph almost 11 years ago
I think we’d like to use RMFs for energy resolution, at least to start with.
RMFs are already available in some of the HESS exporters and we haven’t talked about another data format yet.
Isn’t the use of RMFs to store energy resolution info independent of the question whether we do an XSPEC-style analysis (i.e. for a source region) or a cube-style likelihood analysis? For now we just want to get correct spectra for small sources in the FOV, so I think it’s OK to apply the correct energy resolution from that position to all positions in the FOV, no?
#11 Updated by Knödlseder Jürgen almost 11 years ago
Deil Christoph wrote:
I think we’d like to use RMFs for energy resolution, at least to start with.
RMFs are already available in some of the HESS exporters and we haven’t talked about another data format yet.Isn’t the use of RMFs to store energy resolution info independent of the question whether we do an XSPEC-style analysis (i.e. for a source region) or a cube-style likelihood analysis? For now we just want to get correct spectra for small sources in the FOV, so I think it’s OK to apply the correct energy resolution from that position to all positions in the FOV, no?
I think we should implement the full framework, and then we could add a GCTAEdispRmf
method which is equivalent to the GCTAAeffArf
method. But in fact, this is not really the issue. The issue is that for the standard binned/unbinned analysis, you have to implement the set of methods described above. For an Xspec-style analysis, you won’t need any of these methods, as energy dispersion then boils done to a mere vector multiplication. And this one would implement at the OnOff fitter level I guess.
#12 Updated by Knödlseder Jürgen almost 11 years ago
That’s our working branch for this feature: 1036-implement-energy-resolution
#13 Updated by Knödlseder Jürgen almost 11 years ago
- Status changed from New to In Progress
#14 Updated by Deil Christoph almost 11 years ago
Jürgen, could you please review (and merge if OK) the following branches into the issue_1036 integration branch?
https://github.com/cdeil/gammalib/compare/action_1109
https://github.com/cdeil/ctools/compare/action_1109
Currently the ctools test fail indicating what to work on next:
***************** * Test cscripts * ***************** Test cspull: Traceback (most recent call last): File "/Users/deil/code/ctools/scripts/cspull.py", line 360, in <module> app.execute() File "/Users/deil/code/ctools/scripts/cspull.py", line 173, in execute self.run() File "/Users/deil/code/ctools/scripts/cspull.py", line 210, in run result = self.trial(seed) File "/Users/deil/code/ctools/scripts/cspull.py", line 286, in trial like = obsutils.fit(obs, log=self.m_log, debug=self.m_debug) File "/Users/deil/code/ctools/scripts/obsutils.py", line 147, in fit like.run() File "/Users/deil/code/ctools/pyext/ctools.py", line 319, in run return _ctools.ctlike_run(self) RuntimeError: *** ERROR in GModelSky::integrate_energy(GEvent&, GTime&, GObservation&, bool): Feature not implemented. In case that you need this feature for your application please submit a feature request on https://sourceforge.net/projects/gammalib/, join this error message and provide a detailed description of your needs. . pull.dat file is not valid
#15 Updated by Deil Christoph almost 11 years ago
Both Ellis and I won’t have much time to work on GammaLib / ctools in the next month, so we’d like to wrap this up for now.
Jürgen, can you merge the existing code into devel
(I don’t know if this is already done) and make separate issues for future work so that we can come back to this ~ in April?
I think some things that still need to be done:
- Add option to ctlike to apply energy resolution in the fit (I think I did that already and if not it should be easy to do).
- More unit tests? (where can se see the coverage of the code we wrote? I doubt it’s well-tested at the moment.)
- Some numerical precision / computation speed tests?
- Make high-level tests (pull distributions) simulating / fitting spectra with energy dispersion.
- Write high-level documentation an energy dispersion (including maybe a plot or two) in the user guide.
#16 Updated by Knödlseder Jürgen almost 11 years ago
Deil Christoph wrote:
Both Ellis and I won’t have much time to work on GammaLib / ctools in the next month, so we’d like to wrap this up for now.
Jürgen, can you merge the existing code into
devel
(I don’t know if this is already done) and make separate issues for future work so that we can come back to this ~ in April?
Most of the code is aleady in devel
, I just started to look in the new code using the RMFs. Some work is needed here (see #1120).
I think some things that still need to be done:
- Add option to ctlike to apply energy resolution in the fit (I think I did that already and if not it should be easy to do).
It’s there aleady (parameter edisp
). I made some first tests and everything seems to work. But we need science validation now!
Look for example here: https://cta-sonar.irap.omp.eu/drilldown/measures/1140?metric=coverage&rids%5B%5D=1209- More unit tests? (where can se see the coverage of the code we wrote? I doubt it’s well-tested at the moment.)
- GCTAEdisp: 61.3%
- GCTAEdispPerfTable: 62.8%
Is not so bad, but can of course be improved.
- Some numerical precision / computation speed tests?
Indeed, needed.
- Make high-level tests (pull distributions) simulating / fitting spectra with energy dispersion.
Also. I can start doing this at some point.
- Write high-level documentation an energy dispersion (including maybe a plot or two) in the user guide.
Agree.
#17 Updated by Deil Christoph over 10 years ago
Knödlseder Jürgen wrote:
Deil Christoph wrote:
- Add option to ctlike to apply energy resolution in the fit (I think I did that already and if not it should be easy to do).
It’s there aleady (parameter
edisp
). I made some first tests and everything seems to work. But we need science validation now!
I tried a simple example and energy dispersion doesn’t seem to work with ctlike
in devel
at the moment!?
https://github.com/cdeil/gammalib-tutorials/tree/master/energy_dispersion
Maybe I’m making a simple mistake?
Can you share the test case where it works for you?
#18 Updated by Deil Christoph over 10 years ago
Jürgen, do you have a working example of a ctlike
fit with energy resolution?
#19 Updated by Knödlseder Jürgen over 10 years ago
- Target version deleted (
2nd coding sprint)
#20 Updated by Knödlseder Jürgen over 9 years ago
- Target version set to Stage Florent
#21 Updated by Knödlseder Jürgen over 9 years ago
- Due date set to 01/29/2014
due to changes in a related task
#22 Updated by Knödlseder Jürgen over 9 years ago
- Due date set to 01/29/2014
due to changes in a related task
#23 Updated by Knödlseder Jürgen over 9 years ago
- Due date set to 01/31/2014
due to changes in a related task
#24 Updated by Knödlseder Jürgen over 9 years ago
- File noedisp_2D_mean.png added
- File noedisp_2D_normalization.png added
- File noedisp_2D_sigma.png added
- File noedisp_perf_mean.png added
- File noedisp_perf_normalization.png added
- File noedisp_perf_sigma.png added
- File noedisp_rmf_mean.png added
- File noedisp_rmf_normalization.png added
- File noedisp_rmf_sigma.png added
- Assigned To changed from Deil Christoph to Hassan Collado Tarek
Here is an overview over the current performances. The following plots show pull distributions obtained for a Gaussian model:
<spectrum type="Gaussian"> <parameter name="Normalization" scale="1e-10" value="1.0" min="1e-07" max="1000.0" free="1"/> <parameter name="Mean" scale="1e6" value="5.0" min="0.01" max="100.0" free="1"/> <parameter name="Sigma" scale="1e6" value="1.0" min="0.01" max="100.0" free="1"/> </spectrum>
The following 6 rows show plots for performance table response functions (row 1-2), RMF response functions (row 3-4) and 2D response functions (row 5-6). The first row of each set of two rows shows the pull distribution without energy dispersion, while the second row shows the pull distribution with energy dispersion. While energy dispersion works fine for the performance tables, there are some biases in the RMF and 2D response functions.
Response | Edisp | Normalization | Mean | Sigma |
Perf | No | |||
Perf | Yes | |||
RMF | No | |||
RMF | Yes | |||
2D | No | |||
2D | Yes |
#25 Updated by Knödlseder Jürgen over 9 years ago
- File edisp_2D_mean.png added
- File edisp_2D_normalization.png added
- File edisp_2D_sigma.png added
- File edisp_perf_mean.png added
- File edisp_perf_normalization.png added
- File edisp_perf_sigma.png added
- File edisp_rmf_mean.png added
- File edisp_rmf_normalization.png added
- File edisp_rmf_sigma.png added
#26 Updated by Knödlseder Jürgen over 9 years ago
- Assigned To changed from Hassan Collado Tarek to Forest Florent
#27 Updated by Mayer Michael over 9 years ago
- File test_edisp2d_crab_plaw.png added
Thanks for making this effort. I repeated this test using a power law instead of a Gaussian spectral model and did not find a bias for the 2D format.
This is how I executed cspull
:
cspull edisp=yes RA of pointing (deg) (0-360) [83.6331] Dec of pointing (deg) (-90-90) [22.0145] Duration (in s) [450] Lower energy limit (TeV) [0.1] Upper energy limit (TeV) [10] Calibration database [prod2] Instrument response function [South_50h] Number of energy bins (0=unbinned) [0] Source model [$CTOOLS/share/models/crab.xml] Output file name [pull.dat] Number of trials [200] 1000
The results are attached. They look fine to me. Is it possible that the Gaussian model itself has a bias?
#28 Updated by Knödlseder Jürgen over 9 years ago
Thanks for making the check.
No, the Gaussian model has no bias as the energy dispersion works well for performance tables. I suspect that the problem is that there is a lot of noise in the actual energy dispersion matrix and that the integration method is not accurate enough. I’m working on that.
Also note that the Gaussian model is much more sensitive to energy dispersion problems than the power law model is, so it may just be that you cannot detect the effects.
#29 Updated by Mayer Michael over 9 years ago
- File point_gauss.xml added
- File test_edisp2d_crab_gauss.png added
I understand. I therefore also tried to use a Gaussian function as spectral model. The used model and the pull distributions are attached. The pull distribution don’t look too bad. I assume I do not use enough statistics to make these effects visible.
The noise in the computation might also depend on the parameter values, right? What values were you using?
#30 Updated by Knödlseder Jürgen over 9 years ago
Mayer Michael wrote:
I understand. I therefore also tried to use a Gaussian function as spectral model. The used model and the pull distributions are attached. The pull distribution don’t look too bad. I assume I do not use enough statistics to make these effects visible.
The noise in the computation might also depend on the parameter values, right? What values were you using?
I use a line at 5 TeV with a sigma of 1 TeV (see above).
#31 Updated by Mayer Michael over 9 years ago
I was using a line at 2 TeV with 0.4 TeV width. So mine would be more pronounced. Could that influence the pull distributions?
#32 Updated by Knödlseder Jürgen over 9 years ago
Maybe. What response function are you using (I still suspect that the noise in the response function is influencing the results)?
#33 Updated by Mayer Michael over 9 years ago
I am using 'prod2’ and 'South_50h’. Of course I can try to do the same exercise using the HESS IRFs in order to see if there is a difference.
#34 Updated by Knödlseder Jürgen over 9 years ago
Mayer Michael wrote:
I am using 'prod2’ and 'South_50h’. Of course I can try to do the same exercise using the HESS IRFs in order to see if there is a difference.
I confirm that using the 'prod2’ and 'South_50h’ I get much better results. I will post pull distributions once they have a sufficient number of samples.
#35 Updated by Knödlseder Jürgen over 9 years ago
- Status changed from In Progress to Closed