CMS 3D CMS Logo

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

#include <PValidationFormats.h>

Public Member Functions

float detajet () const
 
float dijetm () const
 
float dphijet () const
 
float drjet () const
 
float ecaljet () const
 
float etotjet () const
 
void fillDiJets (double mass)
 
void fillEcollectJet (double ee, double he, double hoe, double etot)
 
void fillEtaPhiProfileJet (double eta0, double phi0, double eta, double phi, double dist)
 
void fillJets (const std::vector< double > &enj, const std::vector< double > &etaj, const std::vector< double > &phij)
 
void fillTProfileJet (double e, double r, double t)
 
float hcaljet () const
 
float hojet () const
 
std::vector< float > jete () const
 
std::vector< float > jeteta () const
 
std::vector< float > jethite () const
 
std::vector< float > jethitr () const
 
std::vector< float > jethitt () const
 
std::vector< float > jetphi () const
 
int njet () const
 
int njethit () const
 
 PHcalValidInfoJets ()
 
virtual ~PHcalValidInfoJets ()
 

Private Attributes

float detaJet
 
float dijetM
 
float dphiJet
 
float drJet
 
float ecalJet
 
float etotJet
 
float hcalJet
 
float hoJet
 
std::vector< float > jetE
 
std::vector< float > jetEta
 
std::vector< float > jetHite
 
std::vector< float > jetHitr
 
std::vector< float > jetHitt
 
std::vector< float > jetPhi
 
int nJet
 
int nJetHit
 

Friends

class SimG4HcalValidation
 

Detailed Description

Definition at line 1255 of file PValidationFormats.h.

Constructor & Destructor Documentation

PHcalValidInfoJets::PHcalValidInfoJets ( )
inline

Definition at line 1259 of file PValidationFormats.h.

virtual PHcalValidInfoJets::~PHcalValidInfoJets ( )
inlinevirtual

Definition at line 1270 of file PValidationFormats.h.

1270 {}

Member Function Documentation

float PHcalValidInfoJets::detajet ( ) const
inline

Definition at line 1289 of file PValidationFormats.h.

References detaJet.

1289 { return detaJet; }
float PHcalValidInfoJets::dijetm ( ) const
inline

Definition at line 1292 of file PValidationFormats.h.

References dijetM.

1292 { return dijetM; }
float PHcalValidInfoJets::dphijet ( ) const
inline

Definition at line 1290 of file PValidationFormats.h.

References dphiJet.

1290 { return dphiJet; }
float PHcalValidInfoJets::drjet ( ) const
inline

Definition at line 1291 of file PValidationFormats.h.

References drJet.

1291 { return drJet; }
float PHcalValidInfoJets::ecaljet ( ) const
inline

Definition at line 1284 of file PValidationFormats.h.

References ecalJet.

1284 { return ecalJet; }
float PHcalValidInfoJets::etotjet ( ) const
inline

Definition at line 1287 of file PValidationFormats.h.

References etotJet.

1287 { return etotJet; }
void PHcalValidInfoJets::fillDiJets ( double  mass)

Definition at line 1280 of file PValidationFormats.cc.

References dijetM.

Referenced by SimG4HcalValidation::jetAnalysis().

1280 { dijetM = (float)mass; }
void PHcalValidInfoJets::fillEcollectJet ( double  ee,
double  he,
double  hoe,
double  etot 
)

Definition at line 1252 of file PValidationFormats.cc.

References ecalJet, etotJet, hcalJet, and hoJet.

Referenced by SimG4HcalValidation::jetAnalysis().

1252  {
1253  // hardest jet properties
1254 
1255  ecalJet = (float)ee;
1256  hcalJet = (float)he;
1257  hoJet = (float)hoe;
1258  etotJet = (float)etot;
1259 }
void PHcalValidInfoJets::fillEtaPhiProfileJet ( double  eta0,
double  phi0,
double  eta,
double  phi,
double  dist 
)

Definition at line 1261 of file PValidationFormats.cc.

References detaJet, dphiJet, and drJet.

Referenced by SimG4HcalValidation::jetAnalysis().

1261  {
1262  detaJet = (float)(eta - eta0);
1263  dphiJet = (float)(phi - phi0);
1264  drJet = (float)dist;
1265 }
void PHcalValidInfoJets::fillJets ( const std::vector< double > &  enj,
const std::vector< double > &  etaj,
const std::vector< double > &  phij 
)

Definition at line 1267 of file PValidationFormats.cc.

References mps_fire::i, jetE, jetEta, jetPhi, and nJet.

Referenced by SimG4HcalValidation::jetAnalysis().

1269  {
1270  nJet = en.size();
1271  for (int i = 0; i < nJet; i++) {
1272  jetE.push_back((float)en[i]);
1273  jetEta.push_back((float)eta[i]);
1274  jetPhi.push_back((float)phi[i]);
1275  }
1276 
1277  // std::cout << " fillJets - nJet = " << nJet << std::endl;
1278 }
std::vector< float > jetEta
std::vector< float > jetPhi
std::vector< float > jetE
void PHcalValidInfoJets::fillTProfileJet ( double  e,
double  r,
double  t 
)

Definition at line 1243 of file PValidationFormats.cc.

References jetHite, jetHitr, jetHitt, and nJetHit.

Referenced by SimG4HcalValidation::jetAnalysis().

1243  {
1244  jetHite.push_back((float)e);
1245  jetHitr.push_back((float)r);
1246  jetHitt.push_back((float)t);
1247  nJetHit++;
1248 
1249  // std::cout << " fillTProfileJet - nJetHit = " << nJetHit << std::endl;
1250 }
std::vector< float > jetHitt
std::vector< float > jetHite
std::vector< float > jetHitr
float PHcalValidInfoJets::hcaljet ( ) const
inline

Definition at line 1285 of file PValidationFormats.h.

References hcalJet.

1285 { return hcalJet; }
float PHcalValidInfoJets::hojet ( ) const
inline

Definition at line 1286 of file PValidationFormats.h.

References hoJet.

1286 { return hoJet; }
std::vector<float> PHcalValidInfoJets::jete ( ) const
inline

Definition at line 1279 of file PValidationFormats.h.

References jetE.

1279 { return jetE; }
std::vector< float > jetE
std::vector<float> PHcalValidInfoJets::jeteta ( ) const
inline

Definition at line 1280 of file PValidationFormats.h.

References jetEta.

1280 { return jetEta; }
std::vector< float > jetEta
std::vector<float> PHcalValidInfoJets::jethite ( ) const
inline

Definition at line 1274 of file PValidationFormats.h.

References jetHite.

1274 { return jetHite; }
std::vector< float > jetHite
std::vector<float> PHcalValidInfoJets::jethitr ( ) const
inline

Definition at line 1275 of file PValidationFormats.h.

References jetHitr.

1275 { return jetHitr; }
std::vector< float > jetHitr
std::vector<float> PHcalValidInfoJets::jethitt ( ) const
inline

Definition at line 1276 of file PValidationFormats.h.

References jetHitt.

1276 { return jetHitt; }
std::vector< float > jetHitt
std::vector<float> PHcalValidInfoJets::jetphi ( ) const
inline

Definition at line 1281 of file PValidationFormats.h.

References jetPhi.

1281 { return jetPhi; }
std::vector< float > jetPhi
int PHcalValidInfoJets::njet ( ) const
inline

Definition at line 1282 of file PValidationFormats.h.

References nJet.

1282 { return nJet; }
int PHcalValidInfoJets::njethit ( ) const
inline

Definition at line 1277 of file PValidationFormats.h.

References nJetHit.

1277 { return nJetHit; }

Friends And Related Function Documentation

friend class SimG4HcalValidation
friend

Definition at line 1256 of file PValidationFormats.h.

Member Data Documentation

float PHcalValidInfoJets::detaJet
private

Definition at line 1304 of file PValidationFormats.h.

Referenced by detajet(), and fillEtaPhiProfileJet().

float PHcalValidInfoJets::dijetM
private

Definition at line 1304 of file PValidationFormats.h.

Referenced by dijetm(), and fillDiJets().

float PHcalValidInfoJets::dphiJet
private

Definition at line 1304 of file PValidationFormats.h.

Referenced by dphijet(), and fillEtaPhiProfileJet().

float PHcalValidInfoJets::drJet
private

Definition at line 1304 of file PValidationFormats.h.

Referenced by drjet(), and fillEtaPhiProfileJet().

float PHcalValidInfoJets::ecalJet
private

Definition at line 1303 of file PValidationFormats.h.

Referenced by ecaljet(), and fillEcollectJet().

float PHcalValidInfoJets::etotJet
private

Definition at line 1303 of file PValidationFormats.h.

Referenced by etotjet(), and fillEcollectJet().

float PHcalValidInfoJets::hcalJet
private

Definition at line 1303 of file PValidationFormats.h.

Referenced by fillEcollectJet(), and hcaljet().

float PHcalValidInfoJets::hoJet
private

Definition at line 1303 of file PValidationFormats.h.

Referenced by fillEcollectJet(), and hojet().

std::vector<float> PHcalValidInfoJets::jetE
private

Definition at line 1308 of file PValidationFormats.h.

Referenced by fillJets(), and jete().

std::vector<float> PHcalValidInfoJets::jetEta
private

Definition at line 1309 of file PValidationFormats.h.

Referenced by fillJets(), and jeteta().

std::vector<float> PHcalValidInfoJets::jetHite
private

Definition at line 1305 of file PValidationFormats.h.

Referenced by fillTProfileJet(), and jethite().

std::vector<float> PHcalValidInfoJets::jetHitr
private

Definition at line 1306 of file PValidationFormats.h.

Referenced by fillTProfileJet(), and jethitr().

std::vector<float> PHcalValidInfoJets::jetHitt
private

Definition at line 1307 of file PValidationFormats.h.

Referenced by fillTProfileJet(), and jethitt().

std::vector<float> PHcalValidInfoJets::jetPhi
private

Definition at line 1310 of file PValidationFormats.h.

Referenced by fillJets(), and jetphi().

int PHcalValidInfoJets::nJet
private

Definition at line 1302 of file PValidationFormats.h.

Referenced by fillJets(), and njet().

int PHcalValidInfoJets::nJetHit
private

Definition at line 1302 of file PValidationFormats.h.

Referenced by fillTProfileJet(), and njethit().