Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:13:18

0001 // ----------------------------------------------------------------------------
0002 // 'SMakeClustQATreeConfig.h'
0003 // Derek Anderson
0004 // 03.10.2024
0005 //
0006 // SCorrelatorQAMaker plugin to produce the QA tree
0007 // for calorimeter clusters.
0008 // ----------------------------------------------------------------------------
0009 
0010 #ifndef SCORRELATORQAMAKER_SMAKECLUSTQATREECONFIG_H
0011 #define SCORRELATORQAMAKER_SMAKECLUSTQATREECONFIG_H
0012 
0013 // make common namespaces implicit
0014 using namespace std;
0015 
0016 
0017 
0018 namespace SColdQcdCorrelatorAnalysis {
0019 
0020   // SMakeClustQATreeConfig definition ----------------------------------------
0021 
0022   struct SMakeClustQATreeConfig {
0023 
0024     bool isEmbed;
0025 
0026     // cluster acceptance
0027     pair<Types::ClustInfo, Types::ClustInfo> clustAccept;
0028 
0029   };  // end SMakeClustQATreeConfig
0030 
0031 }  // end SColdQcdCorrelatorAnalysis namespace
0032 
0033 #endif
0034 
0035 // end ------------------------------------------------------------------------