CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
PtAssignmentEngineDxy Class Reference

#include <PtAssignmentEngineDxy.h>

Public Member Functions

const PtAssignmentEngineAux2017aux () const
 
virtual void calculate_pt_dxy (const EMTFTrack &track, emtf::Feature &feature, emtf::Prediction &prediction) const
 
virtual void call_tensorflow_dxy (const emtf::Feature &feature, emtf::Prediction &prediction) const
 
void configure (int verbose, const std::string pbFileNameDxy)
 
virtual void preprocessing_dxy (const EMTFTrack &track, emtf::Feature &feature) const
 
 PtAssignmentEngineDxy ()
 
virtual ~PtAssignmentEngineDxy ()
 

Protected Attributes

tensorflow::GraphDef * graphDefDxy_
 
std::string inputNameDxy_
 
std::vector< std::string > outputNamesDxy_
 
std::string pbFileNameDxy_
 
std::string pbFilePathDxy_
 
tensorflow::Session * sessionDxy_
 
int verbose_
 

Detailed Description

Definition at line 16 of file PtAssignmentEngineDxy.h.

Constructor & Destructor Documentation

◆ PtAssignmentEngineDxy()

PtAssignmentEngineDxy::PtAssignmentEngineDxy ( )
explicit

Definition at line 9 of file PtAssignmentEngineDxy.cc.

9 : graphDefDxy_(nullptr), sessionDxy_(nullptr) {}
tensorflow::Session * sessionDxy_
tensorflow::GraphDef * graphDefDxy_

◆ ~PtAssignmentEngineDxy()

PtAssignmentEngineDxy::~PtAssignmentEngineDxy ( )
virtual

Definition at line 11 of file PtAssignmentEngineDxy.cc.

References tensorflow::closeSession(), graphDefDxy_, and sessionDxy_.

11  {
12  if (sessionDxy_ != nullptr) {
14  }
15  delete graphDefDxy_;
16 }
tensorflow::Session * sessionDxy_
tensorflow::GraphDef * graphDefDxy_
bool closeSession(Session *&session)
Definition: TensorFlow.cc:234

Member Function Documentation

◆ aux()

const PtAssignmentEngineAux2017 & PtAssignmentEngineDxy::aux ( ) const

Definition at line 39 of file PtAssignmentEngineDxy.cc.

References instance.

39  {
41  return instance;
42 }
static PFTauRenderPlugin instance

◆ calculate_pt_dxy()

void PtAssignmentEngineDxy::calculate_pt_dxy ( const EMTFTrack track,
emtf::Feature feature,
emtf::Prediction prediction 
) const
virtual

Definition at line 44 of file PtAssignmentEngineDxy.cc.

References call_tensorflow_dxy(), preprocessing_dxy(), and HLT_2024v12_cff::track.

Referenced by PtAssignment::process().

46  {
47  // This is called for each track instead of for entire track collection as was done in Phase-2 implementation
48  preprocessing_dxy(track, feature);
49  call_tensorflow_dxy(feature, prediction);
50  return;
51 }
virtual void call_tensorflow_dxy(const emtf::Feature &feature, emtf::Prediction &prediction) const
virtual void preprocessing_dxy(const EMTFTrack &track, emtf::Feature &feature) const

◆ call_tensorflow_dxy()

void PtAssignmentEngineDxy::call_tensorflow_dxy ( const emtf::Feature feature,
emtf::Prediction prediction 
) const
virtual

Definition at line 156 of file PtAssignmentEngineDxy.cc.

References filterCSVwithJSON::copy, ztail::d, data, emtf_assert, input, inputNameDxy_, emtf::NUM_FEATURES, emtf::NUM_PREDICTIONS, outputNamesDxy_, PatBasicFWLiteJetAnalyzer_Selector_cfg::outputs, tensorflow::run(), and sessionDxy_.

Referenced by calculate_pt_dxy().

156  {
157  tensorflow::Tensor input(tensorflow::DT_FLOAT, {1, emtf::NUM_FEATURES});
158  std::vector<tensorflow::Tensor> outputs;
159  emtf_assert(feature.size() == emtf::NUM_FEATURES);
160 
161  float* d = input.flat<float>().data();
162  std::copy(feature.begin(), feature.end(), d);
164  emtf_assert(outputs.size() == 1);
165  emtf_assert(prediction.size() == emtf::NUM_PREDICTIONS);
166 
167  prediction.at(0) = outputs[0].matrix<float>()(0, 0);
168  prediction.at(1) = outputs[0].matrix<float>()(0, 1);
169 
170  return;
171 }
std::vector< std::string > outputNamesDxy_
constexpr int NUM_PREDICTIONS
Definition: Common.h:69
tensorflow::Session * sessionDxy_
static std::string const input
Definition: EdmProvDump.cc:50
void run(Session *session, const NamedTensorList &inputs, const std::vector< std::string > &outputNames, std::vector< Tensor > *outputs, const thread::ThreadPoolOptions &threadPoolOptions)
Definition: TensorFlow.cc:272
d
Definition: ztail.py:151
#define emtf_assert(expr)
Definition: DebugTools.h:18
constexpr int NUM_FEATURES
Definition: Common.h:68
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:80

◆ configure()

void PtAssignmentEngineDxy::configure ( int  verbose,
const std::string  pbFileNameDxy 
)

Definition at line 18 of file PtAssignmentEngineDxy.cc.

References tensorflow::createSession(), emtf_assert, contentValuesFiles::fullPath, graphDefDxy_, inputNameDxy_, tensorflow::loadGraphDef(), outputNamesDxy_, pbFileNameDxy_, pbFilePathDxy_, sessionDxy_, AlCaHLTBitMon_QueryRunRegistry::string, verbose, and verbose_.

Referenced by PtAssignment::configure().

18  {
19  verbose_ = verbose;
20 
21  pbFileNameDxy_ = pbFileNameDxy;
22  std::string pbFilePathDxy_ = "L1Trigger/L1TMuon/data/emtf_luts/" + pbFileNameDxy_;
23 
24  inputNameDxy_ = "input1";
25  outputNamesDxy_ = {"Identity"};
26 
27  if (graphDefDxy_ == nullptr) {
29  }
30  emtf_assert(graphDefDxy_ != nullptr);
31 
32  if (sessionDxy_ == nullptr) {
34  }
35 
36  emtf_assert(sessionDxy_ != nullptr);
37 }
bool verbose
GraphDef * loadGraphDef(const std::string &pbFile)
Definition: TensorFlow.cc:120
std::vector< std::string > outputNamesDxy_
tensorflow::Session * sessionDxy_
tensorflow::GraphDef * graphDefDxy_
Session * createSession()
Definition: TensorFlow.cc:137
#define emtf_assert(expr)
Definition: DebugTools.h:18

◆ preprocessing_dxy()

void PtAssignmentEngineDxy::preprocessing_dxy ( const EMTFTrack track,
emtf::Feature feature 
) const
virtual

Definition at line 53 of file PtAssignmentEngineDxy.cc.

References data, mps_fire::i, and HLT_2024v12_cff::track.

Referenced by calculate_pt_dxy().

53  {
54  // Mimic Phase-1 EMTF input calculations
55  // 6 delta Phis: S1-S2, S1-S3, S1-S4, S2-S3, S2-S4, S3-S4
56  // 6 delta Thetas: S1-S2, S1-S3, S1-S4, S2-S3, S2-S4, S3-S4
57  // 6 delta Phi signs: S1-S2, S1-S3, S1-S4, S2-S3, S2-S4, S3-S4
58  // 6 delta Theta signs: S1-S2, S1-S3, S1-S4, S2-S3, S2-S4, S3-S4
59  // 1 track Theta taken from stub coordinate in ME2, ME3, ME4 (in this priority)
60  // 4 CSC pattern values (Run 2 convention): S1, S2, S3, S4
61  // Total: 29 variables
62  std::array<float, 6> x_dphi;
63  std::array<float, 6> x_dphi_sign;
64  std::array<float, 6> x_dtheta;
65  std::array<float, 6> x_dtheta_sign;
66  std::array<float, 1> x_trk_theta;
67  std::array<float, 4> x_csc_pattern;
68 
69  // Initialize x_csc_pattern to zeros
70  x_csc_pattern.fill(0);
71 
72  EMTFPtLUT data = track.PtLUT();
73 
74  const int invalid_dtheta = 127;
75  const int invalid_dphi = 8191;
76 
77  // // Which stations have hits
78  bool st1 = (track.Mode() >= 8);
79  bool st2 = ((track.Mode() % 8) >= 4);
80  bool st3 = ((track.Mode() % 4) >= 2);
81  bool st4 = ((track.Mode() % 2) == 1);
82 
83  // Get valid pattern values
84  if (st1)
85  x_csc_pattern[0] = data.cpattern[0];
86  if (st2)
87  x_csc_pattern[1] = data.cpattern[1];
88  if (st3)
89  x_csc_pattern[2] = data.cpattern[2];
90  if (st4)
91  x_csc_pattern[3] = data.cpattern[3];
92 
93  for (int i = 0; i < 6; ++i) { // There are 6 deltas between 4 stations.
94  // Calculate delta phi
95  x_dphi[i] = (data.delta_ph[i] != invalid_dphi) ? data.delta_ph[i] : 0;
96 
97  // Calculate delta theta
98  x_dtheta[i] = (data.delta_th[i] != invalid_dtheta) ? data.delta_th[i] : 0;
99 
100  // Get delta phi and theta signs
101  x_dphi_sign[i] = data.sign_ph[i];
102  x_dtheta_sign[i] = data.sign_th[i];
103  }
104 
105  // Set dPhi and dTheta values to 0 if there was no hit in the station
106  if (!st1) {
107  x_dphi[0] = 0;
108  x_dphi[1] = 0;
109  x_dphi[2] = 0;
110 
111  x_dtheta[0] = 0;
112  x_dtheta[1] = 0;
113  x_dtheta[2] = 0;
114  }
115  if (!st2) {
116  x_dphi[0] = 0;
117  x_dphi[3] = 0;
118  x_dphi[4] = 0;
119 
120  x_dtheta[0] = 0;
121  x_dtheta[3] = 0;
122  x_dtheta[4] = 0;
123  }
124  if (!st3) {
125  x_dphi[1] = 0;
126  x_dphi[3] = 0;
127  x_dphi[5] = 0;
128 
129  x_dtheta[1] = 0;
130  x_dtheta[3] = 0;
131  x_dtheta[5] = 0;
132  }
133  if (!st4) {
134  x_dphi[2] = 0;
135  x_dphi[4] = 0;
136  x_dphi[5] = 0;
137 
138  x_dtheta[2] = 0;
139  x_dtheta[4] = 0;
140  x_dtheta[5] = 0;
141  }
142 
143  x_trk_theta[0] = track.Theta_fp();
144 
145  // Set NN inputs
146  feature = {{x_dphi[0], x_dphi[1], x_dphi[2], x_dphi[3], x_dphi[4],
147  x_dphi[5], x_dphi_sign[0], x_dphi_sign[1], x_dphi_sign[2], x_dphi_sign[3],
148  x_dphi_sign[4], x_dphi_sign[5], x_dtheta[0], x_dtheta[1], x_dtheta[2],
149  x_dtheta[3], x_dtheta[4], x_dtheta[5], x_dtheta_sign[0], x_dtheta_sign[1],
150  x_dtheta_sign[2], x_dtheta_sign[3], x_dtheta_sign[4], x_dtheta_sign[5], x_csc_pattern[0],
151  x_csc_pattern[1], x_csc_pattern[2], x_csc_pattern[3], x_trk_theta[0]}};
152 
153  return;
154 }
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:80

Member Data Documentation

◆ graphDefDxy_

tensorflow::GraphDef* PtAssignmentEngineDxy::graphDefDxy_
protected

Definition at line 34 of file PtAssignmentEngineDxy.h.

Referenced by configure(), and ~PtAssignmentEngineDxy().

◆ inputNameDxy_

std::string PtAssignmentEngineDxy::inputNameDxy_
protected

Definition at line 38 of file PtAssignmentEngineDxy.h.

Referenced by call_tensorflow_dxy(), and configure().

◆ outputNamesDxy_

std::vector<std::string> PtAssignmentEngineDxy::outputNamesDxy_
protected

Definition at line 39 of file PtAssignmentEngineDxy.h.

Referenced by call_tensorflow_dxy(), and configure().

◆ pbFileNameDxy_

std::string PtAssignmentEngineDxy::pbFileNameDxy_
protected

Definition at line 36 of file PtAssignmentEngineDxy.h.

Referenced by configure().

◆ pbFilePathDxy_

std::string PtAssignmentEngineDxy::pbFilePathDxy_
protected

Definition at line 37 of file PtAssignmentEngineDxy.h.

Referenced by configure().

◆ sessionDxy_

tensorflow::Session* PtAssignmentEngineDxy::sessionDxy_
protected

Definition at line 35 of file PtAssignmentEngineDxy.h.

Referenced by call_tensorflow_dxy(), configure(), and ~PtAssignmentEngineDxy().

◆ verbose_

int PtAssignmentEngineDxy::verbose_
protected

Definition at line 32 of file PtAssignmentEngineDxy.h.

Referenced by configure().