CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
BeamSpotOnlineProducer Class Reference
Inheritance diagram for BeamSpotOnlineProducer:
edm::stream::EDProducer<>

Public Member Functions

 BeamSpotOnlineProducer (const edm::ParameterSet &iConf)
 constructor More...
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) override
 produce a beam spot class More...
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &iDesc)
 Fill descriptor. More...
 

Private Attributes

const edm::ESGetToken< BeamSpotObjects, BeamSpotObjectsRcdbeamToken_
 
edm::ESWatcher< BeamSpotTransientObjectsRcdbeamTransientRcdESWatcher_
 
const edm::ESGetToken< BeamSpotObjects, BeamSpotTransientObjectsRcdbeamTransientToken_
 
const bool changeFrame_
 
const edm::EDGetTokenT< L1GlobalTriggerEvmReadoutRecordl1GtEvmReadoutRecordToken_
 
const edm::EDGetTokenT< BeamSpotOnlineCollectionscalerToken_
 
const unsigned int theBeamShoutMode
 
double theMaxR2
 
const double theMaxZ
 
const double theSetSigmaZ
 
const bool useTransientRecord_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description


class: BeamSpotOnlineProducer.h package: RecoVertex/BeamSpotProducer

author: Francisco Yumiceva, Fermilab (yumic.nosp@m.eva@.nosp@m.fnal..nosp@m.gov) modified by: Simone Gennai, INFN MIB


Definition at line 31 of file BeamSpotOnlineProducer.cc.

Constructor & Destructor Documentation

◆ BeamSpotOnlineProducer()

BeamSpotOnlineProducer::BeamSpotOnlineProducer ( const edm::ParameterSet iConf)
explicit

constructor

Definition at line 60 of file BeamSpotOnlineProducer.cc.

61  : changeFrame_(iconf.getParameter<bool>("changeToCMSCoordinates")),
62  theMaxZ(iconf.getParameter<double>("maxZ")),
63  theSetSigmaZ(iconf.getParameter<double>("setSigmaZ")),
64  useTransientRecord_(iconf.getParameter<bool>("useTransientRecord")),
65  scalerToken_(consumes<BeamSpotOnlineCollection>(iconf.getParameter<InputTag>("src"))),
66  l1GtEvmReadoutRecordToken_(consumes<L1GlobalTriggerEvmReadoutRecord>(iconf.getParameter<InputTag>("gtEvmLabel"))),
67  beamToken_(esConsumes<BeamSpotObjects, BeamSpotObjectsRcd>()),
68  beamTransientToken_(esConsumes<BeamSpotObjects, BeamSpotTransientObjectsRcd>()),
69  theBeamShoutMode(iconf.getUntrackedParameter<unsigned int>("beamMode", 11)) {
70  theMaxR2 = iconf.getParameter<double>("maxRadius");
71  theMaxR2 *= theMaxR2;
72 
73  produces<reco::BeamSpot>();
74 }

References edm::ParameterSet::getParameter(), and theMaxR2.

Member Function Documentation

◆ fillDescriptions()

void BeamSpotOnlineProducer::fillDescriptions ( edm::ConfigurationDescriptions iDesc)
static

Fill descriptor.

Definition at line 76 of file BeamSpotOnlineProducer.cc.

76  {
78  ps.add<bool>("changeToCMSCoordinates", false);
79  ps.add<double>("maxZ", 40.);
80  ps.add<double>("setSigmaZ", -1.);
81  ps.addUntracked<unsigned int>("beamMode", 11);
82  ps.add<InputTag>("src", InputTag("hltScalersRawToDigi"));
83  ps.add<InputTag>("gtEvmLabel", InputTag(""));
84  ps.add<double>("maxRadius", 2.0);
85  ps.add<bool>("useTransientRecord", false);
86  iDesc.addWithDefaultLabel(ps);
87 }

References edm::ParameterSetDescription::add(), edm::ParameterSetDescription::addUntracked(), edm::ConfigurationDescriptions::addWithDefaultLabel(), and HLT_FULL_cff::InputTag.

◆ produce()

void BeamSpotOnlineProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

produce a beam spot class

Definition at line 89 of file BeamSpotOnlineProducer.cc.

89  {
90  // product is a reco::BeamSpot object
91  auto result = std::make_unique<reco::BeamSpot>();
92  reco::BeamSpot aSpot;
93  //shout MODE only in stable beam
94  bool shoutMODE = false;
96  if (iEvent.getByToken(l1GtEvmReadoutRecordToken_, gtEvmReadoutRecord)) {
97  if (gtEvmReadoutRecord->gtfeWord().beamMode() == theBeamShoutMode)
98  shoutMODE = true;
99  } else {
100  shoutMODE = true;
101  }
102  bool fallBackToDB = false;
103  if (useTransientRecord_) {
104  auto const& spotDB = iSetup.getData(beamTransientToken_);
105  if (spotDB.GetBeamType() != 2) {
106  if (shoutMODE && beamTransientRcdESWatcher_.check(iSetup)) {
107  edm::LogWarning("BeamSpotFromDB")
108  << "Online Beam Spot producer falls back to DB value because the ESProducer returned a fake beamspot ";
109  }
110  fallBackToDB = true;
111  } else {
112  // translate from BeamSpotObjects to reco::BeamSpot
113  // in case we need to switch to LHC reference frame
114  // ignore for the moment rotations, and translations
115  double f = 1.;
116  if (changeFrame_)
117  f = -1.;
118  reco::BeamSpot::Point apoint(f * spotDB.GetX(), f * spotDB.GetY(), f * spotDB.GetZ());
119 
121  for (int i = 0; i < 7; ++i) {
122  for (int j = 0; j < 7; ++j) {
123  matrix(i, j) = spotDB.GetCovariance(i, j);
124  }
125  }
126  double sigmaZ = spotDB.GetSigmaZ();
127  if (theSetSigmaZ > 0)
129 
130  // this assume beam width same in x and y
131  aSpot = reco::BeamSpot(apoint, sigmaZ, spotDB.Getdxdz(), spotDB.Getdydz(), spotDB.GetBeamWidthX(), matrix);
132  aSpot.setBeamWidthY(spotDB.GetBeamWidthY());
133  aSpot.setEmittanceX(spotDB.GetEmittanceX());
134  aSpot.setEmittanceY(spotDB.GetEmittanceY());
135  aSpot.setbetaStar(spotDB.GetBetaStar());
137  }
138  } else {
139  // get scalar collection
141  iEvent.getByToken(scalerToken_, handleScaler);
142 
143  // beam spot scalar object
144  BeamSpotOnline spotOnline;
145 
146  // product is a reco::BeamSpot object
147  auto result = std::make_unique<reco::BeamSpot>();
148 
149  if (!handleScaler->empty()) {
150  // get one element
151  spotOnline = *(handleScaler->begin());
152 
153  // in case we need to switch to LHC reference frame
154  // ignore for the moment rotations, and translations
155  double f = 1.;
156  if (changeFrame_)
157  f = -1.;
158 
159  reco::BeamSpot::Point apoint(f * spotOnline.x(), spotOnline.y(), f * spotOnline.z());
160 
162  matrix(0, 0) = spotOnline.err_x() * spotOnline.err_x();
163  matrix(1, 1) = spotOnline.err_y() * spotOnline.err_y();
164  matrix(2, 2) = spotOnline.err_z() * spotOnline.err_z();
165  matrix(3, 3) = spotOnline.err_sigma_z() * spotOnline.err_sigma_z();
166 
167  double sigmaZ = spotOnline.sigma_z();
168  if (theSetSigmaZ > 0)
170 
171  aSpot = reco::BeamSpot(apoint, sigmaZ, spotOnline.dxdz(), f * spotOnline.dydz(), spotOnline.width_x(), matrix);
172 
173  aSpot.setBeamWidthY(spotOnline.width_y());
174  aSpot.setEmittanceX(0.);
175  aSpot.setEmittanceY(0.);
176  aSpot.setbetaStar(0.);
177  aSpot.setType(reco::BeamSpot::LHC); // flag value from scalars
178 
179  // check if we have a valid beam spot fit result from online DQM
180  if (spotOnline.x() == 0 && spotOnline.y() == 0 && spotOnline.z() == 0 && spotOnline.width_x() == 0 &&
181  spotOnline.width_y() == 0) {
182  if (shoutMODE) {
183  edm::LogWarning("BeamSpotFromDB")
184  << "Online Beam Spot producer falls back to DB value because the scaler values are zero ";
185  }
186  fallBackToDB = true;
187  }
188  double r2 = spotOnline.x() * spotOnline.x() + spotOnline.y() * spotOnline.y();
189  if (std::abs(spotOnline.z()) >= theMaxZ || r2 >= theMaxR2) {
190  if (shoutMODE) {
191  edm::LogError("BeamSpotFromDB")
192  << "Online Beam Spot producer falls back to DB value because the scaler values are too big to be true :"
193  << spotOnline.x() << " " << spotOnline.y() << " " << spotOnline.z();
194  }
195  fallBackToDB = true;
196  }
197  } else {
198  //empty online beamspot collection: FED data was empty
199  //the error should probably have been send at unpacker level
200  fallBackToDB = true;
201  }
202  }
203  if (fallBackToDB) {
205  const BeamSpotObjects* spotDB = beamhandle.product();
206 
207  // translate from BeamSpotObjects to reco::BeamSpot
208  reco::BeamSpot::Point apoint(spotDB->GetX(), spotDB->GetY(), spotDB->GetZ());
209 
211  for (int i = 0; i < 7; ++i) {
212  for (int j = 0; j < 7; ++j) {
213  matrix(i, j) = spotDB->GetCovariance(i, j);
214  }
215  }
216 
217  // this assume beam width same in x and y
218  aSpot = reco::BeamSpot(
219  apoint, spotDB->GetSigmaZ(), spotDB->Getdxdz(), spotDB->Getdydz(), spotDB->GetBeamWidthX(), matrix);
220  aSpot.setBeamWidthY(spotDB->GetBeamWidthY());
221  aSpot.setEmittanceX(spotDB->GetEmittanceX());
222  aSpot.setEmittanceY(spotDB->GetEmittanceY());
223  aSpot.setbetaStar(spotDB->GetBetaStar());
225  }
226 
227  *result = aSpot;
228 
229  iEvent.put(std::move(result));
230 }

References funct::abs(), L1GtfeExtWord::beamMode(), align::BeamSpot, beamToken_, beamTransientRcdESWatcher_, beamTransientToken_, changeFrame_, edm::ESWatcher< T >::check(), BeamSpotOnline::dxdz(), BeamSpotOnline::dydz(), BeamSpotOnline::err_sigma_z(), BeamSpotOnline::err_x(), BeamSpotOnline::err_y(), BeamSpotOnline::err_z(), f, BeamSpotObjects::GetBeamWidthX(), BeamSpotObjects::GetBeamWidthY(), BeamSpotObjects::GetBetaStar(), BeamSpotObjects::GetCovariance(), edm::EventSetup::getData(), BeamSpotObjects::Getdxdz(), BeamSpotObjects::Getdydz(), BeamSpotObjects::GetEmittanceX(), BeamSpotObjects::GetEmittanceY(), edm::EventSetup::getHandle(), BeamSpotObjects::GetSigmaZ(), BeamSpotObjects::GetX(), BeamSpotObjects::GetY(), BeamSpotObjects::GetZ(), L1GlobalTriggerEvmReadoutRecord::gtfeWord(), mps_fire::i, iEvent, dqmiolumiharvest::j, l1GtEvmReadoutRecordToken_, reco::BeamSpot::LHC, makeMuonMisalignmentScenario::matrix, eostools::move(), edm::ESHandle< T >::product(), diffTwoXMLs::r2, mps_fire::result, scalerToken_, reco::BeamSpot::setBeamWidthY(), reco::BeamSpot::setbetaStar(), reco::BeamSpot::setEmittanceX(), reco::BeamSpot::setEmittanceY(), reco::BeamSpot::setType(), BeamSpotOnline::sigma_z(), BeamSpotPI::sigmaZ, theBeamShoutMode, theMaxR2, theMaxZ, theSetSigmaZ, reco::BeamSpot::Tracker, useTransientRecord_, BeamSpotOnline::width_x(), BeamSpotOnline::width_y(), BeamSpotOnline::x(), BeamSpotOnline::y(), and BeamSpotOnline::z().

Member Data Documentation

◆ beamToken_

const edm::ESGetToken<BeamSpotObjects, BeamSpotObjectsRcd> BeamSpotOnlineProducer::beamToken_
private

Definition at line 49 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

◆ beamTransientRcdESWatcher_

edm::ESWatcher<BeamSpotTransientObjectsRcd> BeamSpotOnlineProducer::beamTransientRcdESWatcher_
private

Definition at line 53 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

◆ beamTransientToken_

const edm::ESGetToken<BeamSpotObjects, BeamSpotTransientObjectsRcd> BeamSpotOnlineProducer::beamTransientToken_
private

Definition at line 50 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

◆ changeFrame_

const bool BeamSpotOnlineProducer::changeFrame_
private

Definition at line 43 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

◆ l1GtEvmReadoutRecordToken_

const edm::EDGetTokenT<L1GlobalTriggerEvmReadoutRecord> BeamSpotOnlineProducer::l1GtEvmReadoutRecordToken_
private

Definition at line 48 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

◆ scalerToken_

const edm::EDGetTokenT<BeamSpotOnlineCollection> BeamSpotOnlineProducer::scalerToken_
private

Definition at line 47 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

◆ theBeamShoutMode

const unsigned int BeamSpotOnlineProducer::theBeamShoutMode
private

Definition at line 55 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

◆ theMaxR2

double BeamSpotOnlineProducer::theMaxR2
private

Definition at line 45 of file BeamSpotOnlineProducer.cc.

Referenced by BeamSpotOnlineProducer(), and produce().

◆ theMaxZ

const double BeamSpotOnlineProducer::theMaxZ
private

Definition at line 44 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

◆ theSetSigmaZ

const double BeamSpotOnlineProducer::theSetSigmaZ
private

Definition at line 44 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

◆ useTransientRecord_

const bool BeamSpotOnlineProducer::useTransientRecord_
private

Definition at line 46 of file BeamSpotOnlineProducer.cc.

Referenced by produce().

edm::ESWatcher::check
bool check(const edm::EventSetup &iSetup)
Definition: ESWatcher.h:57
BeamSpotOnline::x
float x() const
Definition: BeamSpotOnline.h:48
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
BeamSpotObjects::GetBeamWidthY
double GetBeamWidthY() const
get average transverse beam width
Definition: BeamSpotObjects.h:77
BeamSpotObjects::Getdxdz
double Getdxdz() const
get dxdz slope, crossing angle in XZ
Definition: BeamSpotObjects.h:79
BeamSpotOnlineProducer::beamToken_
const edm::ESGetToken< BeamSpotObjects, BeamSpotObjectsRcd > beamToken_
Definition: BeamSpotOnlineProducer.cc:49
mps_fire.i
i
Definition: mps_fire.py:428
edm::ParameterSetDescription::add
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Definition: ParameterSetDescription.h:95
reco::BeamSpot::setBeamWidthY
void setBeamWidthY(double v)
Definition: BeamSpot.h:105
BeamSpotPI::sigmaZ
Definition: BeamSpotPayloadInspectorHelper.h:36
makeMuonMisalignmentScenario.matrix
list matrix
Definition: makeMuonMisalignmentScenario.py:141
BeamSpotOnline::err_y
float err_y() const
Definition: BeamSpotOnline.h:54
reco::BeamSpot::setEmittanceY
void setEmittanceY(double v)
Definition: BeamSpot.h:137
align::BeamSpot
Definition: StructureType.h:95
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
BeamSpotOnline::err_z
float err_z() const
Definition: BeamSpotOnline.h:55
BeamSpotOnline::dxdz
float dxdz() const
Definition: BeamSpotOnline.h:51
BeamSpotOnline::y
float y() const
Definition: BeamSpotOnline.h:49
BeamSpotObjects::GetSigmaZ
double GetSigmaZ() const
get sigma Z, RMS bunch length
Definition: BeamSpotObjects.h:73
L1GlobalTriggerEvmReadoutRecord::gtfeWord
const L1GtfeExtWord gtfeWord() const
get / set GTFE word (record) in the GT readout record
Definition: L1GlobalTriggerEvmReadoutRecord.cc:249
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89301
BeamSpotObjects::GetZ
double GetZ() const
get Z beam position
Definition: BeamSpotObjects.h:71
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
BeamSpotOnline::dydz
float dydz() const
Definition: BeamSpotOnline.h:52
reco::BeamSpot::LHC
Definition: BeamSpot.h:24
BeamSpotOnline::err_sigma_z
float err_sigma_z() const
Definition: BeamSpotOnline.h:63
BeamSpotOnline::width_x
float width_x() const
Definition: BeamSpotOnline.h:58
BeamSpotOnlineProducer::useTransientRecord_
const bool useTransientRecord_
Definition: BeamSpotOnlineProducer.cc:46
edm::Handle
Definition: AssociativeIterator.h:50
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
BeamSpotOnlineProducer::theMaxR2
double theMaxR2
Definition: BeamSpotOnlineProducer.cc:45
BeamSpotOnline::err_x
float err_x() const
Definition: BeamSpotOnline.h:53
BeamSpotOnlineProducer::changeFrame_
const bool changeFrame_
Definition: BeamSpotOnlineProducer.cc:43
BeamSpotOnline::sigma_z
float sigma_z() const
Definition: BeamSpotOnline.h:60
reco::BeamSpot
Definition: BeamSpot.h:21
BeamSpotOnlineProducer::beamTransientToken_
const edm::ESGetToken< BeamSpotObjects, BeamSpotTransientObjectsRcd > beamTransientToken_
Definition: BeamSpotOnlineProducer.cc:50
reco::BeamSpot::Tracker
Definition: BeamSpot.h:24
edm::ESHandle
Definition: DTSurvey.h:22
BeamSpotObjects::GetCovariance
double GetCovariance(int i, int j) const
get i,j element of the full covariance matrix 7x7
Definition: BeamSpotObjects.h:83
reco::BeamSpot::setEmittanceX
void setEmittanceX(double v)
Definition: BeamSpot.h:136
BeamSpotOnlineProducer::theSetSigmaZ
const double theSetSigmaZ
Definition: BeamSpotOnlineProducer.cc:44
BeamSpotObjects::GetBetaStar
double GetBetaStar() const
get beta star
Definition: BeamSpotObjects.h:107
BeamSpotObjects::GetEmittanceX
double GetEmittanceX() const
get emittance
Definition: BeamSpotObjects.h:103
BeamSpotObjects::GetY
double GetY() const
get Y beam position
Definition: BeamSpotObjects.h:69
reco::BeamSpot::setbetaStar
void setbetaStar(double v)
Definition: BeamSpot.h:138
diffTwoXMLs.r2
r2
Definition: diffTwoXMLs.py:73
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup::getHandle
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:155
BeamSpotObjects
Definition: BeamSpotObjects.h:20
reco::BeamSpot::CovarianceMatrix
math::Error< dimension >::type CovarianceMatrix
Definition: BeamSpot.h:29
BeamSpotOnlineProducer::scalerToken_
const edm::EDGetTokenT< BeamSpotOnlineCollection > scalerToken_
Definition: BeamSpotOnlineProducer.cc:47
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
edm::EventSetup::getData
bool getData(T &iHolder) const
Definition: EventSetup.h:127
BeamSpotOnline
Definition: BeamSpotOnline.h:28
BeamSpotObjects::GetBeamWidthX
double GetBeamWidthX() const
get average transverse beam width
Definition: BeamSpotObjects.h:75
eostools.move
def move(src, dest)
Definition: eostools.py:511
BeamSpotOnline::width_y
float width_y() const
Definition: BeamSpotOnline.h:59
BeamSpotObjects::GetEmittanceY
double GetEmittanceY() const
get emittance
Definition: BeamSpotObjects.h:105
BeamSpotObjects::Getdydz
double Getdydz() const
get dydz slope, crossing angle in YZ
Definition: BeamSpotObjects.h:81
BeamSpotOnlineProducer::l1GtEvmReadoutRecordToken_
const edm::EDGetTokenT< L1GlobalTriggerEvmReadoutRecord > l1GtEvmReadoutRecordToken_
Definition: BeamSpotOnlineProducer.cc:48
BeamSpotOnlineProducer::theMaxZ
const double theMaxZ
Definition: BeamSpotOnlineProducer.cc:44
mps_fire.result
result
Definition: mps_fire.py:311
reco::BeamSpot::Point
math::XYZPoint Point
point in the space
Definition: BeamSpot.h:27
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
BeamSpotOnlineProducer::theBeamShoutMode
const unsigned int theBeamShoutMode
Definition: BeamSpotOnlineProducer.cc:55
reco::BeamSpot::setType
void setType(BeamType type)
set beam type
Definition: BeamSpot.h:124
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
BeamSpotOnline::z
float z() const
Definition: BeamSpotOnline.h:50
BeamSpotObjects::GetX
double GetX() const
get X beam position
Definition: BeamSpotObjects.h:67
L1GtfeExtWord::beamMode
const cms_uint16_t beamMode() const
Definition: L1GtfeExtWord.cc:215
edm::InputTag
Definition: InputTag.h:15
edm::ConfigurationDescriptions::addWithDefaultLabel
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:87
BeamSpotOnlineProducer::beamTransientRcdESWatcher_
edm::ESWatcher< BeamSpotTransientObjectsRcd > beamTransientRcdESWatcher_
Definition: BeamSpotOnlineProducer.cc:53