Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
#include "DataFormats/METReco/interface/SigInputObj.h"
// -*- C++ -*-
//
// Package:    METAlgorithms
// Class:      SigInputObj
//
/**\class METSignificance SigInputObj.cc RecoMET/METAlgorithms/src/SigInputObj.cc

 Description: <one line class summary>

 Implementation:
     <Notes on implementation>
*/
//
// Original Author:  Kyle Story, Freya Blekman (Cornell University)
//         Created:  Fri Apr 18 11:58:33 CEST 2008
//
//

//=== Constructors ===============================//
metsig::SigInputObj::SigInputObj(
    const std::string& m_type, double m_energy, double m_phi, double m_sigma_e, double m_sigma_tan)
    : type(m_type), energy(m_energy), phi(m_phi), sigma_e(m_sigma_e), sigma_tan(m_sigma_tan) {}
//================================================//

//=== Methods ====================================//
// none yet...
//================================================//