CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
MatchingOutput Class Reference

#include <EmulatorClasses.h>

Public Member Functions

std::vector< ConvertedHitHits ()
 
PhOutput PhiMatch ()
 
std::vector< int > Segment ()
 
void SetHits (std::vector< ConvertedHit > hits)
 
void SetPhOut (PhOutput ph_output)
 
void SetSegment (std::vector< int > segment)
 
void SetThOut (ThOutput th_output)
 
void SetValues (ThOutput th_output, PhOutput ph_output, std::vector< ConvertedHit > hits, std::vector< std::vector< Winner >> winners, std::vector< int > segment)
 
void SetWinners (std::vector< std::vector< Winner >> winners)
 
ThOutput ThetaMatch ()
 
std::vector< std::vector
< Winner > > 
Winners ()
 

Private Attributes

std::vector< ConvertedHit_hits
 
PhOutput _ph_output
 
std::vector< int > _segment
 
ThOutput _th_output
 
std::vector< std::vector
< Winner > > 
_winners
 

Detailed Description

Definition at line 164 of file EmulatorClasses.h.

Member Function Documentation

std::vector<ConvertedHit> MatchingOutput::Hits ( )
inline

Definition at line 184 of file EmulatorClasses.h.

184 {return _hits;};
std::vector< ConvertedHit > _hits
PhOutput MatchingOutput::PhiMatch ( )
inline

Definition at line 187 of file EmulatorClasses.h.

Referenced by Deltas().

187 {return _ph_output;};
std::vector<int> MatchingOutput::Segment ( )
inline

Definition at line 188 of file EmulatorClasses.h.

188 {return _segment;};
std::vector< int > _segment
void MatchingOutput::SetHits ( std::vector< ConvertedHit hits)
inline

Definition at line 168 of file EmulatorClasses.h.

168 {_hits = hits;};
std::vector< ConvertedHit > _hits
void MatchingOutput::SetPhOut ( PhOutput  ph_output)
inline

Definition at line 171 of file EmulatorClasses.h.

Referenced by Deltas().

171 {_ph_output = ph_output;};
void MatchingOutput::SetSegment ( std::vector< int >  segment)
inline

Definition at line 172 of file EmulatorClasses.h.

172 {_segment = segment;};
std::vector< int > _segment
void MatchingOutput::SetThOut ( ThOutput  th_output)
inline

Definition at line 170 of file EmulatorClasses.h.

170 {_th_output = th_output;};
void MatchingOutput::SetValues ( ThOutput  th_output,
PhOutput  ph_output,
std::vector< ConvertedHit hits,
std::vector< std::vector< Winner >>  winners,
std::vector< int >  segment 
)
inline

Definition at line 173 of file EmulatorClasses.h.

Referenced by PhiMatching().

173  {
174 
175  _th_output = th_output;
176  _ph_output = ph_output;
177  _hits = hits;
178  _winners = winners;
179  _segment = segment;
180  }
std::vector< int > _segment
std::vector< ConvertedHit > _hits
std::vector< std::vector< Winner > > _winners
void MatchingOutput::SetWinners ( std::vector< std::vector< Winner >>  winners)
inline

Definition at line 169 of file EmulatorClasses.h.

169 {_winners = winners;};
std::vector< std::vector< Winner > > _winners
ThOutput MatchingOutput::ThetaMatch ( )
inline

Definition at line 186 of file EmulatorClasses.h.

Referenced by Deltas().

186 {return _th_output;};
std::vector<std::vector<Winner> > MatchingOutput::Winners ( )
inline

Definition at line 185 of file EmulatorClasses.h.

Referenced by Deltas().

185 {return _winners;};
std::vector< std::vector< Winner > > _winners

Member Data Documentation

std::vector<ConvertedHit> MatchingOutput::_hits
private

Definition at line 188 of file EmulatorClasses.h.

PhOutput MatchingOutput::_ph_output
private

Definition at line 196 of file EmulatorClasses.h.

std::vector<int> MatchingOutput::_segment
private

Definition at line 197 of file EmulatorClasses.h.

ThOutput MatchingOutput::_th_output
private

Definition at line 195 of file EmulatorClasses.h.

std::vector<std::vector<Winner> > MatchingOutput::_winners
private

Definition at line 194 of file EmulatorClasses.h.