CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes | Static Public Attributes
emtf::Event Struct Reference

#include <Event.h>

Public Member Functions

bool operator< (const Event &rhs) const
 
void outputEvent ()
 
void resetPredictedValue ()
 

Public Attributes

Double_t CSCPt
 
std::vector< Double_t > data
 
Double_t DTPt
 
Int_t id
 
Int_t Mode
 
Double_t predictedValue
 
Int_t Quality
 
Double_t tmvaPt
 
Double_t tmvaPt1
 
Double_t trueValue
 

Static Public Attributes

static Int_t sortingIndex = 1
 

Detailed Description

Definition at line 16 of file Event.h.

Member Function Documentation

bool emtf::Event::operator< ( const Event rhs) const
inline

Definition at line 32 of file Event.h.

References data, and sortingIndex.

33  {
34  return data[sortingIndex] < rhs.data[sortingIndex];
35  }
static Int_t sortingIndex
Definition: Event.h:28
std::vector< Double_t > data
Definition: Event.h:30
void emtf::Event::outputEvent ( )
inline

Definition at line 37 of file Event.h.

References gather_cfg::cout, and mps_fire::i.

38  {
39  std::cout << "trueValue = " << trueValue << std::endl;
40  std::cout << "predictedValue = " << predictedValue << std::endl;
41  std::cout << "id = " << id << std::endl;
42  for(unsigned int i=0; i<data.size(); i++)
43  {
44  std::cout << "x"<< i << "=" << data[i] << ", ";
45  }
46  std::cout << std::endl;
47 
48  }
std::vector< Double_t > data
Definition: Event.h:30
Double_t trueValue
Definition: Event.h:19
Double_t predictedValue
Definition: Event.h:20
void emtf::Event::resetPredictedValue ( )
inline

Definition at line 50 of file Event.h.

50 { predictedValue = 0; }
Double_t predictedValue
Definition: Event.h:20

Member Data Documentation

Double_t emtf::Event::CSCPt

Definition at line 22 of file Event.h.

std::vector<Double_t> emtf::Event::data
Double_t emtf::Event::DTPt

Definition at line 21 of file Event.h.

Int_t emtf::Event::id

Definition at line 29 of file Event.h.

Referenced by compareEventsById().

Int_t emtf::Event::Mode

Definition at line 25 of file Event.h.

Double_t emtf::Event::predictedValue
Int_t emtf::Event::Quality

Definition at line 26 of file Event.h.

Int_t Event::sortingIndex = 1
static
Double_t emtf::Event::tmvaPt

Definition at line 23 of file Event.h.

Double_t emtf::Event::tmvaPt1

Definition at line 24 of file Event.h.

Double_t emtf::Event::trueValue