Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 
0002 #ifndef GCTCOLLECTIONS_H
0003 #define GCTCOLLECTIONS_H
0004 
0005 #include <vector>
0006 
0007 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctInternEmCand.h"
0008 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctInternJetData.h"
0009 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctInternEtSum.h"
0010 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctInternHFData.h"
0011 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctInternHtMiss.h"
0012 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctFibreWord.h"
0013 
0014 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctEmCand.h"
0015 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctJetCand.h"
0016 
0017 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctEtSums.h"
0018 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctJetCounts.h"
0019 
0020 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctHFRingEtSums.h"
0021 #include "DataFormats/L1GlobalCaloTrigger/interface/L1GctHFBitCounts.h"
0022 
0023 typedef std::vector<L1GctInternEmCand> L1GctInternEmCandCollection;
0024 typedef std::vector<L1GctInternJetData> L1GctInternJetDataCollection;
0025 typedef std::vector<L1GctInternEtSum> L1GctInternEtSumCollection;
0026 typedef std::vector<L1GctInternHFData> L1GctInternHFDataCollection;
0027 typedef std::vector<L1GctInternHtMiss> L1GctInternHtMissCollection;
0028 typedef std::vector<L1GctFibreWord> L1GctFibreCollection;
0029 
0030 typedef std::vector<L1GctEmCand> L1GctEmCandCollection;
0031 typedef std::vector<L1GctJetCand> L1GctJetCandCollection;
0032 
0033 typedef std::vector<L1GctEtHad> L1GctEtHadCollection;
0034 typedef std::vector<L1GctEtMiss> L1GctEtMissCollection;
0035 typedef std::vector<L1GctEtTotal> L1GctEtTotalCollection;
0036 typedef std::vector<L1GctHtMiss> L1GctHtMissCollection;
0037 typedef std::vector<L1GctJetCounts> L1GctJetCountsCollection;
0038 typedef std::vector<L1GctHFRingEtSums> L1GctHFRingEtSumsCollection;
0039 typedef std::vector<L1GctHFBitCounts> L1GctHFBitCountsCollection;
0040 
0041 #endif