Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:12

0001 #ifndef __L1Analysis_L1AnalysisL1UpgradeTfMuonShowerDataFormat_H__
0002 #define __L1Analysis_L1AnalysisL1UpgradeTfMuonShowerDataFormat_H__
0003 
0004 #include <vector>
0005 #include <map>
0006 
0007 namespace L1Analysis {
0008 
0009   struct L1AnalysisL1UpgradeTfMuonShowerDataFormat {
0010     L1AnalysisL1UpgradeTfMuonShowerDataFormat() { Reset(); };
0011     ~L1AnalysisL1UpgradeTfMuonShowerDataFormat(){};
0012 
0013     void Reset() {
0014       nTfMuonShowers = 0;
0015       tfMuonShowerBx.clear();
0016       tfMuonShowerOneNominal.clear();
0017       tfMuonShowerOneTight.clear();
0018       tfMuonShowerOneLoose.clear();
0019       tfMuonShowerTwoLoose.clear();
0020       tfMuonShowerEndcap.clear();
0021       tfMuonShowerSector.clear();
0022     }
0023 
0024     unsigned short int nTfMuonShowers;
0025     std::vector<short int> tfMuonShowerBx;
0026     std::vector<short int> tfMuonShowerOneNominal;
0027     std::vector<short int> tfMuonShowerOneTight;
0028     std::vector<short int> tfMuonShowerOneLoose;
0029     std::vector<short int> tfMuonShowerTwoLoose;
0030     std::vector<short int> tfMuonShowerEndcap;
0031     std::vector<short int> tfMuonShowerSector;
0032   };
0033 }  // namespace L1Analysis
0034 #endif