File indexing completed on 2023-03-17 11:12:57
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 tfMuonShowerTwoLoose.clear();
0019 tfMuonShowerEndcap.clear();
0020 tfMuonShowerSector.clear();
0021 }
0022
0023 unsigned short int nTfMuonShowers;
0024 std::vector<short int> tfMuonShowerBx;
0025 std::vector<short int> tfMuonShowerOneNominal;
0026 std::vector<short int> tfMuonShowerOneTight;
0027 std::vector<short int> tfMuonShowerTwoLoose;
0028 std::vector<short int> tfMuonShowerEndcap;
0029 std::vector<short int> tfMuonShowerSector;
0030 };
0031 }
0032 #endif