CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SigInputObj.cc
Go to the documentation of this file.
2 // -*- C++ -*-
3 //
4 // Package: METAlgorithms
5 // Class: SigInputObj
6 //
14 //
15 // Original Author: Kyle Story, Freya Blekman (Cornell University)
16 // Created: Fri Apr 18 11:58:33 CEST 2008
17 // $Id: SigInputObj.cc,v 1.1 2008/04/18 10:12:55 fblekman Exp $
18 //
19 //
20 
21 //=== Constructors ===============================//
22 metsig::SigInputObj::SigInputObj( std::string & m_type, double & m_energy, double & m_phi,
23  double & m_sigma_e, double & m_sigma_tan)
24 {
25  type.clear();
26  type.append(m_type);
27  energy = m_energy;
28  phi = m_phi;
29  sigma_e = m_sigma_e;
30  sigma_tan = m_sigma_tan;
31 }
32 
33 //================================================//
34 
35 //=== Methods ====================================//
36 // none yet...
37 //================================================//
38 
type
Definition: HCALResponse.h:22