Difference between revisions of "SIDIS Tracking"
From Hall A Wiki
Line 1: | Line 1: | ||
* A Complete set of code is available @ /w/work5602/transversity/xqian/12gev/tracking_12 | * A Complete set of code is available @ /w/work5602/transversity/xqian/12gev/tracking_12 | ||
* Brief Introduction to each Classes | * Brief Introduction to each Classes | ||
+ | ** THaSolenoid (inherited from THaSpectrometer) | ||
+ | *** Template class for Solenoid detector | ||
+ | ** SOLGEM (inherited from THaTrackingDetector) | ||
+ | *** Main class for the tracking detector. | ||
+ | *** Tracking is performed in the "coarsetrack" and "findtrack". | ||
+ | *** Additional methods are written to help the track finding. | ||
+ | ** THaGemHit | ||
+ | *** This class is to store the hit information on the GEM. It provide various methods to save/extract the hit information, e.g. x,y,z,r,phi etc. | ||
+ | *** This function is used to store the information from detector (NOT the true simulated information. | ||
+ | ** THaGemTrack | ||
+ | *** This class is to store the track information from the progressive tracking algorithm. One can save/extract various information related to the reconstructed track in this class. One can also sort the tracks to do the de-ghost. | ||
+ | ** THaShowerHit | ||
+ | *** This class is added to store the hit information on the calorimeter. One special variable is the sector number. | ||
+ | ** |
Revision as of 16:25, 21 June 2011
- A Complete set of code is available @ /w/work5602/transversity/xqian/12gev/tracking_12
- Brief Introduction to each Classes
- THaSolenoid (inherited from THaSpectrometer)
- Template class for Solenoid detector
- SOLGEM (inherited from THaTrackingDetector)
- Main class for the tracking detector.
- Tracking is performed in the "coarsetrack" and "findtrack".
- Additional methods are written to help the track finding.
- THaGemHit
- This class is to store the hit information on the GEM. It provide various methods to save/extract the hit information, e.g. x,y,z,r,phi etc.
- This function is used to store the information from detector (NOT the true simulated information.
- THaGemTrack
- This class is to store the track information from the progressive tracking algorithm. One can save/extract various information related to the reconstructed track in this class. One can also sort the tracks to do the de-ghost.
- THaShowerHit
- This class is added to store the hit information on the calorimeter. One special variable is the sector number.
- THaSolenoid (inherited from THaSpectrometer)