You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

Simulated events can be fully reconstructed by a ReconCheater that uses Monte Carlo truth to reconstruct individual particles. Charged tracks found by the TrackingCheater and calorimeter clusters found by the ClusterCheater are used to provide the basis for full event reconstruction. Various options and parameter settings in a Cheating properties file or Cheating Table for each detector are used to mix reconstructed tracks and clusters with Monte Carlo particles. Options for obtaining various measures of the neutral energy deposition, for controlling decays and nuclear interactions, and simulating loses of neutral hadrons are included.

To add the ReconCheater to a process, use

    add(new org.lcsim.recon.cheater.ReconCheater());

The TrackingCheater and ClusterCheater drivers will be added by the ReconCheater.
An AIDA histogram package is included for optional use.

To access reconstructed particles, use

    event.get(ReconstructedParticle.class);


Fully simulated GEANT4 events are reconstructed by the ReconCheater in the following way:

  • Only those tracks and clusters that were reconstructed, e.g. by the corresponding cheaters, are used, so particles do get lost.
  • For charged particle decays, the track from the primary particle is used if it was found, otherwise the secondary track is used, allowing neutrinos to carry away energy.
  • For converted photons, the found tracks are used.
  • At this stage, perfect energy flow is used where a cluster's parentage is checked to see if there is a charged track which should be associated.
  • Nuclear interactions are turned off by default since the reconstruction is not optimized for them yet: for example should low energy protons be ignored, can low energy neutrons be cut out, can the leading particle be used to get an estimate of the corresponding neutral energy in the calorimeter.
    The original particle (or reconstructed primary track if it's charged) is used and all secondary tracks and clusters are removed. Nuclear interactions can be turned on for comparisons.
  • Radiation is not allowed at this time.
  • Perfect energy flow reconstruction can be specified. Otherwise, ...
  • Neutral hadrons are not considered reconstructable if the distance from a nearby cluster with 2X or 4X the neutral cluster energy is less than specified.


The total Z pole energy reconstructed for the CDC, GLD and SiD detectors is shown below. Only uds decays of the Z where simulated for the GLD detector. Here a parameterized HCal response of 60%/sqrt(E) was used to obtain resolutions of 2.1 GeV for all 3 detectors.


High energy W mass reconstruction for the CDC and SiD detectors is shown below. A parameterized HCal response of 60%/sqrt(E) and perfect energy flow were used to obtain resolutions of 2.2 GeV for both detectors.


The ReconCheater code is contained in the following classes:

Packages:

Classes:

org.lcsim.recon.cheater

CheatingTable

 

CheatParticleID

 

CheatReconstructedParticle

 

ReconCheater

To use the ReconCheater histogram package, use

    cheater = new org.lcsim.recon.cheater.ReconCheater();

    cheater.setHist(true);


  • No labels