Changeset d1ab205 in git
- Timestamp:
- Jan 11, 2022, 10:25:45 PM (3 years ago)
- Children:
- 157fe13
- Parents:
- c6bce62
- Location:
- modules
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/CscClusterEfficiency.cc
rc6bce62 rd1ab205 17 17 */ 18 18 19 /** \class CscClusterEfficiency 20 * 21 * Selects candidates from the InputArray according to the CscClusterEfficiency formula. 22 * 23 * \author P. Demin - UCL, Louvain-la-Neuve 24 * 25 */ 19 /** \class CscClusterEfficiency 20 * 21 * This module is specific to the CMS paper searching for neutral LLPs in the CMS endcap muon detectors: https://arxiv.org/abs/2107.04838 22 * It is implemented based on the ClusterEfficiency parameterization function provided in the HEPData entry of the paper: https://www.hepdata.net/record/104408 23 * 24 * \author Christina Wang 25 * 26 */ 26 27 27 28 #include "modules/CscClusterEfficiency.h" -
modules/CscClusterEfficiency.h
rc6bce62 rd1ab205 20 20 #define CscClusterEfficiency_h 21 21 22 23 22 24 /** \class CscClusterEfficiency 23 25 * 24 * Selects candidates from the InputArray according to the CscClusterEfficiency formula. 26 * This module is specific to the CMS paper searching for neutral LLPs in the CMS endcap muon detectors: https://arxiv.org/abs/2107.04838 27 * It is implemented based on the ClusterEfficiency parameterization function provided in the HEPData entry of the paper: https://www.hepdata.net/record/104408 25 28 * 26 * \author P. Demin - UCL, Louvain-la-Neuve29 * \author Christina Wang 27 30 * 28 31 */ 29 30 32 #include "classes/DelphesModule.h" 31 33 -
modules/CscClusterId.cc
rc6bce62 rd1ab205 17 17 */ 18 18 19 /** \claCscClusterIdncy 20 * 21 * Selects candidates from the InputArray according to the efficiency formula. 22 * 23 * \author P. Demin - UCL, Louvain-la-Neuve 24 * 25 */ 19 /** \class CscClusterId 20 * 21 * This module is specific to the CMS paper searching for neutral LLPs in the CMS endcap muon detectors: https://arxiv.org/abs/2107.04838 22 * It is implemented based on the cut_based_id.py function provided in the HEPData entry of the paper: https://www.hepdata.net/record/104408 23 * 24 * \author Christina Wang 25 * 26 */ 26 27 27 28 #include "modules/CscClusterId.h" -
modules/CscClusterId.h
rc6bce62 rd1ab205 22 22 /** \class CscClusterId 23 23 * 24 * Selects candidates from the InputArray according to the CscClusterId formula. 24 * This module is specific to the CMS paper searching for neutral LLPs in the CMS endcap muon detectors: https://arxiv.org/abs/2107.04838 25 * It is implemented based on the cut_based_id.py function provided in the HEPData entry of the paper: https://www.hepdata.net/record/104408 25 26 * 26 * \author P. Demin - UCL, Louvain-la-Neuve27 * \author Christina Wang 27 28 * 28 29 */ 29 30 30 #include "classes/DelphesModule.h" 31 31 -
modules/LLPFilter.cc
rc6bce62 rd1ab205 19 19 /** \class LLPFilter 20 20 * 21 * Removes particles with specific PDG codes 22 * 23 * \author M. Selvaggi 21 * Filter LLPs with particular PDG ID/status and calculate the EM and hadronic energy of LLP based on decay particles 22 * The classification of EM and hadronic energy of LLP is based on instructions from the HEPData entry for the CMS paper searching 23 * for neutral LLPs in the CMS endcap muon detectors: https://www.hepdata.net/record/104408 24 * 25 * \author Christina Wang 24 26 * 25 27 */ … … 146 148 const TLorentzVector &candidateProdPosition = candidate->Position; 147 149 const TLorentzVector &candidateDecayPosition = candidate->DecayPosition; 150 // TLorentzVector candidateDecayPosition; 148 151 pt = candidateMomentum.Pt(); 149 152 eta = candidateMomentum.Eta(); … … 181 184 if (tempCandidate->M1 == -1) continue; 182 185 186 // candidateDecayPosition = daughter->Position; 187 183 188 if (abs(daughterPdg)==11 || abs(daughterPdg)==22 || abs(daughterPdg)==111)candidate->Eem += daughterMomentum.E(); 184 189 else candidate->Ehad += daughterMomentum.E(); -
modules/LLPFilter.h
rc6bce62 rd1ab205 22 22 #define LLPFilter_h 23 23 24 24 25 /** \class LLPFilter 25 26 * 26 * Removes particles with specific PDG codes 27 * Filter LLPs with particular PDG ID/status and calculate the EM and hadronic energy of LLP based on decay particles 28 * The classification of EM and hadronic energy of LLP is based on instructions from the HEPData entry for the CMS paper searching 29 * for neutral LLPs in the CMS endcap muon detectors: https://www.hepdata.net/record/104408 27 30 * 28 * \author M. Selvaggi31 * \author Christina Wang 29 32 * 30 33 */
Note:
See TracChangeset
for help on using the changeset viewer.