CMS 3D CMS Logo

PhysicsTGraphPayload.cc
Go to the documentation of this file.
2 
4 
5 #include <iomanip>
6 
8 
9 PhysicsTGraphPayload::PhysicsTGraphPayload(const TGraph& graph) : numPoints_(0) {
10  if (graph.GetN() >= 1) {
11  name_ = graph.GetName();
12  numPoints_ = graph.GetN();
13  x_.resize(numPoints_);
14  y_.resize(numPoints_);
15  for (int iPoint = 0; iPoint < numPoints_; ++iPoint) {
16  Double_t xPoint, yPoint;
17  graph.GetPoint(iPoint, xPoint, yPoint);
18  x_[iPoint] = xPoint;
19  y_[iPoint] = yPoint;
20  }
21  }
22 }
23 
25  if (numPoints_ >= 1) {
26  TGraph graph(numPoints_);
27  graph.SetName(name_.data());
28  for (int iPoint = 0; iPoint < numPoints_; ++iPoint) {
29  graph.SetPoint(iPoint, x_[iPoint], y_[iPoint]);
30  }
31  return graph;
32  } else {
33  throw cms::Exception("PhysicsTGraphPayload") << "Invalid TGraph object !!\n";
34  }
35 }
36 
37 void PhysicsTGraphPayload::print(std::ostream& stream) const {
38  stream << "<PhysicsTGraphPayload::print (name = " << name_ << ")>:" << std::endl;
39  for (int iPoint = 0; iPoint < numPoints_; ++iPoint) {
40  stream << "point #" << iPoint << ": x = " << x_[iPoint] << ", y = " << y_[iPoint] << std::endl;
41  }
42 }
std::vector< float > y_
PhysicsTGraphPayload()
default constructor
uint32_t T const *__restrict__ uint32_t const *__restrict__ int32_t int Histo::index_type cudaStream_t stream
void print(std::ostream &stream) const
print points of TGraph object
std::vector< float > x_