Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_L1Trigger_CaloEmCand_h
0002 #define DataFormats_L1Trigger_CaloEmCand_h
0003 
0004 #include "DataFormats/L1Trigger/interface/L1Candidate.h"
0005 
0006 namespace l1t {
0007 
0008   class CaloEmCand : public L1Candidate {
0009   public:
0010     CaloEmCand() {}
0011     CaloEmCand(const LorentzVector& p4, int pt = 0, int eta = 0, int phi = 0, int qual = 0);
0012 
0013     ~CaloEmCand() override;
0014 
0015   private:
0016     //
0017   };
0018 
0019   typedef BXVector<CaloEmCand> CaloEmCandBxCollection;
0020 
0021 }  // namespace l1t
0022 
0023 #endif