Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef __L1Analysis_L1AnalysisL1CaloClusterDataFormat_H__
0002 #define __L1Analysis_L1AnalysisL1CaloClusterDataFormat_H__
0003 
0004 //-------------------------------------------------------------------------------
0005 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
0006 //
0007 //
0008 // Original code : L1Trigger/L1TNtuples/L1NtupleProducer
0009 //-------------------------------------------------------------------------------
0010 
0011 #include <vector>
0012 
0013 namespace L1Analysis {
0014   struct L1AnalysisL1CaloClusterDataFormat {
0015     L1AnalysisL1CaloClusterDataFormat() { Reset(); };
0016     ~L1AnalysisL1CaloClusterDataFormat(){};
0017 
0018     void Reset() {
0019       nCluster = 0;
0020       ieta.clear();
0021       iphi.clear();
0022       iet.clear();
0023       iqual.clear();
0024       et.clear();
0025       eta.clear();
0026       phi.clear();
0027     }
0028 
0029     void Init() {}
0030 
0031     short int nCluster;
0032     std::vector<short int> ieta;
0033     std::vector<short int> iphi;
0034     std::vector<short int> iet;
0035     std::vector<short int> iqual;
0036     std::vector<float> et;
0037     std::vector<float> eta;
0038     std::vector<float> phi;
0039   };
0040 }  // namespace L1Analysis
0041 #endif