Fork me on GitHub

Changeset d1ab205 in git


Ignore:
Timestamp:
Jan 11, 2022, 10:25:45 PM (3 years ago)
Author:
christinaw97 <christina.wang@…>
Children:
157fe13
Parents:
c6bce62
Message:

updated comments

Location:
modules
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • modules/CscClusterEfficiency.cc

    rc6bce62 rd1ab205  
    1717 */
    1818
    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  */
    2627
    2728#include "modules/CscClusterEfficiency.h"
  • modules/CscClusterEfficiency.h

    rc6bce62 rd1ab205  
    2020#define CscClusterEfficiency_h
    2121
     22
     23
    2224/** \class CscClusterEfficiency
    2325 *
    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
    2528 *
    26  *  \author P. Demin - UCL, Louvain-la-Neuve
     29 *  \author Christina Wang
    2730 *
    2831 */
    29 
    3032#include "classes/DelphesModule.h"
    3133
  • modules/CscClusterId.cc

    rc6bce62 rd1ab205  
    1717 */
    1818
    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  */
    2627
    2728#include "modules/CscClusterId.h"
  • modules/CscClusterId.h

    rc6bce62 rd1ab205  
    2222/** \class CscClusterId
    2323 *
    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
    2526 *
    26  *  \author P. Demin - UCL, Louvain-la-Neuve
     27 *  \author Christina Wang
    2728 *
    2829 */
    29 
    3030#include "classes/DelphesModule.h"
    3131
  • modules/LLPFilter.cc

    rc6bce62 rd1ab205  
    1919/** \class LLPFilter
    2020 *
    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
    2426 *
    2527 */
     
    146148    const TLorentzVector &candidateProdPosition = candidate->Position;
    147149    const TLorentzVector &candidateDecayPosition = candidate->DecayPosition;
     150    // TLorentzVector candidateDecayPosition;
    148151    pt = candidateMomentum.Pt();
    149152    eta = candidateMomentum.Eta();
     
    181184      if (tempCandidate->M1 == -1) continue;
    182185
     186      // candidateDecayPosition = daughter->Position;
     187
    183188      if (abs(daughterPdg)==11 || abs(daughterPdg)==22 || abs(daughterPdg)==111)candidate->Eem += daughterMomentum.E();
    184189      else candidate->Ehad += daughterMomentum.E();
  • modules/LLPFilter.h

    rc6bce62 rd1ab205  
    2222#define LLPFilter_h
    2323
     24
    2425/** \class LLPFilter
    2526 *
    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
    2730 *
    28  *  \author M. Selvaggi
     31 *  \author Christina Wang
    2932 *
    3033 */
Note: See TracChangeset for help on using the changeset viewer.