Go to the documentation of this file.00001
00002
00003
00004
00005
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "DataFormats/L1Trigger/interface/L1EtMissParticle.h"
00018
00019 using namespace l1extra ;
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 L1EtMissParticle::L1EtMissParticle()
00033 {
00034 }
00035
00036 L1EtMissParticle::L1EtMissParticle(
00037 const LorentzVector& p4,
00038 EtMissType type,
00039 const double& etTotal,
00040 const edm::Ref< L1GctEtMissCollection >& aEtMissRef,
00041 const edm::Ref< L1GctEtTotalCollection >& aEtTotalRef,
00042 const edm::Ref< L1GctHtMissCollection >& aHtMissRef,
00043 const edm::Ref< L1GctEtHadCollection >& aEtHadRef,
00044 int bx )
00045 : LeafCandidate( ( char ) 0, p4 ),
00046 type_( type ),
00047 etTot_( etTotal ),
00048 etMissRef_( aEtMissRef ),
00049 etTotRef_( aEtTotalRef ),
00050 htMissRef_( aHtMissRef ),
00051 etHadRef_( aEtHadRef ),
00052 bx_( bx )
00053 {
00054 }
00055
00056
00057 L1EtMissParticle::L1EtMissParticle(
00058 const PolarLorentzVector& p4,
00059 EtMissType type,
00060 const double& etTotal,
00061 const edm::Ref< L1GctEtMissCollection >& aEtMissRef,
00062 const edm::Ref< L1GctEtTotalCollection >& aEtTotalRef,
00063 const edm::Ref< L1GctHtMissCollection >& aHtMissRef,
00064 const edm::Ref< L1GctEtHadCollection >& aEtHadRef,
00065 int bx )
00066 : LeafCandidate( ( char ) 0, p4 ),
00067 type_( type ),
00068 etTot_( etTotal ),
00069 etMissRef_( aEtMissRef ),
00070 etTotRef_( aEtTotalRef ),
00071 htMissRef_( aHtMissRef ),
00072 etHadRef_( aEtHadRef ),
00073 bx_( bx )
00074 {
00075 }
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108