48 static char ts[] =
"yyyy-Mm-dd hh:mm:ss";
51 int year = ptm->tm_year;
53 if (year <= 37) year += 2000;
54 if (year >= 70 && year <= 137) year += 1900;
57 edm::LogError(
"BadTimeStamp") <<
"year reported is " << year <<
" !!"<<std::endl;
59 edm::LogError(
"BadTimeStamp") <<
"Resetting to " <<year<<std::endl;
61 sprintf( ts,
"%4d-%02d-%02d %02d:%02d:%02d", year,ptm->tm_mon+1,ptm->tm_mday,(ptm->tm_hour+
CEST)%24, ptm->tm_min, ptm->tm_sec);
63 #ifdef STRIP_TRAILING_BLANKS_IN_TIMEZONE
64 unsigned int b = strlen(ts);
65 while (ts[--b] ==
' ') {ts[
b] = 0;}
77 countEvt_(0),countLumi_(0),nthBSTrk_(0),nFitElements_(3),resetHistos_(
false),StartAverage_(
false),firstAverageFit_(0),countGapLumi_(0) {
81 bsSrc_ = consumes<reco::BeamSpot>(
85 .getUntrackedParameter<InputTag>(
"TrackCollection"));
86 pvSrc_ = consumes<reco::VertexCollection>(
88 hltSrc_ = consumes<TriggerResults>(
115 if (fitNLumi_ <= 0) fitNLumi_ = 1;
154 h_nTrk_lumi=
dbe_->book1D(
"nTrk_lumi",
"Num. of selected tracks vs lumi",20,0.5,20.5);
158 h_d0_phi0 =
dbe_->bookProfile(
"d0_phi0",
"d_{0} vs. #phi_{0} (Selected Tracks)",phiBin,phiMin,phiMax,dxBin,dxMin,dxMax,
"");
162 h_vx_vy =
dbe_->book2D(
"trk_vx_vy",
"Vertex (PCA) position of selected tracks",vxBin,vxMin,vxMax,vxBin,vxMin,vxMax);
168 TDatime *
da =
new TDatime();
169 gStyle->SetTimeOffset(da->Convert(kTRUE));
172 string coord[nvar_] = {
"x",
"y",
"z",
"sigmaX",
"sigmaY",
"sigmaZ"};
173 string label[nvar_] = {
"x_{0} (cm)",
"y_{0} (cm)",
"z_{0} (cm)",
174 "#sigma_{X_{0}} (cm)",
"#sigma_{Y_{0}} (cm)",
"#sigma_{Z_{0}} (cm)"};
175 for (
int i = 0;
i < 4;
i++) {
177 for (
int ic=0; ic<nvar_; ++ic) {
178 TString histName(coord[ic]);
179 TString histTitle(coord[ic]);
180 string ytitle(label[ic]);
183 bool createHisto =
true;
186 histName +=
"0_time";
187 xtitle =
"Time [UTC]";
189 histTitle +=
" coordinate of beam spot vs time (Fit)";
191 histTitle = histTitle.Insert(5,
" ") +
" of beam spot vs time (Fit)";
196 histName.Insert(0,
"PV");
198 histTitle.Insert(0,
"Avg. ");
199 histTitle +=
" position of primary vtx vs lumi";
200 xtitle =
"Lumisection";
201 ytitle.insert(0,
"PV");
202 ytitle +=
" #pm #sigma_{PV";
206 else createHisto =
false;
211 histName.Insert(0,
"PV");
213 histTitle.Insert(0,
"Avg. ");
214 histTitle +=
" position of primary vtx vs time";
215 xtitle =
"Time [UTC]";
216 ytitle.insert(0,
"PV");
217 ytitle +=
" #pm #sigma_{PV";
221 else createHisto =
false;
224 histName +=
"0_lumi";
225 xtitle =
"Lumisection";
227 histTitle +=
" coordinate of beam spot vs lumi (Fit)";
229 histTitle = histTitle.Insert(5,
" ") +
" of beam spot vs lumi (Fit)";
233 edm::LogInfo(
"BeamMonitor") <<
"hitsName = " << histName <<
"; histTitle = " << histTitle << std::endl;
234 hs[histName] =
dbe_->book1D(histName,histTitle,40,0.5,40.5);
235 hs[histName]->setAxisTitle(xtitle,1);
236 hs[histName]->setAxisTitle(ytitle,2);
237 hs[histName]->getTH1()->SetOption(
"E1");
238 if (histName.Contains(
"time")) {
241 hs[histName]->setAxisTimeDisplay(1);
242 hs[histName]->setAxisTimeFormat(
"%H:%M:%S",1);
246 hs[histName] =
dbe_->book1D(histName,histTitle,40,0.5,40.5);
247 hs[histName]->getTH1()->SetBit(TH1::kCanRebin);
248 hs[histName]->setAxisTitle(xtitle,1);
249 hs[histName]->setAxisTitle(ytitle,2);
250 hs[histName]->getTH1()->SetOption(
"E1");
251 if (histName.Contains(
"time")) {
254 hs[histName]->setAxisTimeDisplay(1);
255 hs[histName]->setAxisTimeFormat(
"%H:%M:%S",1);
262 h_trk_z0 =
dbe_->book1D(
"trk_z0",
"z_{0} of selected tracks",dzBin,dzMin,dzMax);
265 h_vx_dz =
dbe_->bookProfile(
"vx_dz",
"v_{x} vs. dz of selected tracks",dzBin,dzMin,dzMax,dxBin,dxMin,dxMax,
"");
269 h_vy_dz =
dbe_->bookProfile(
"vy_dz",
"v_{y} vs. dz of selected tracks",dzBin,dzMin,dzMax,dxBin,dxMin,dxMax,
"");
273 h_x0 =
dbe_->book1D(
"BeamMonitorFeedBack_x0",
"x coordinate of beam spot (Fit)",100,-0.01,0.01);
277 h_y0 =
dbe_->book1D(
"BeamMonitorFeedBack_y0",
"y coordinate of beam spot (Fit)",100,-0.01,0.01);
281 h_z0 =
dbe_->book1D(
"BeamMonitorFeedBack_z0",
"z coordinate of beam spot (Fit)",dzBin,dzMin,dzMax);
285 h_sigmaX0 =
dbe_->book1D(
"BeamMonitorFeedBack_sigmaX0",
"sigma x0 of beam spot (Fit)",100,0,0.05);
289 h_sigmaY0 =
dbe_->book1D(
"BeamMonitorFeedBack_sigmaY0",
"sigma y0 of beam spot (Fit)",100,0,0.05);
293 h_sigmaZ0 =
dbe_->book1D(
"BeamMonitorFeedBack_sigmaZ0",
"sigma z0 of beam spot (Fit)",100,0,10);
298 h_trkPt=
dbe_->book1D(
"trkPt",
"p_{T} of all reco'd tracks (no selection)",200,0.,50.);
301 h_trkVz=
dbe_->book1D(
"trkVz",
"Z coordinate of PCA of all reco'd tracks (no selection)",dzBin,dzMin,dzMax);
304 cutFlowTable =
dbe_->book1D(
"cutFlowTable",
"Cut flow table of track selection", 9, 0, 9 );
307 fitResults=
dbe_->book2D(
"fitResults",
"Results of previous good beam fit",2,0,2,8,0,8);
324 h_nVtx =
dbe_->book1D(
"vtxNbr",
"Reconstructed Vertices(non-fake) in all Event",60,-0.5,59.5);
328 h_nVtx_st =
dbe_->book1D(
"vtxNbr_SelectedTriggers",
"Reconstructed Vertices(non-fake) in Events",60,-0.5,59.5);
332 h_PVx[0] =
dbe_->book1D(
"PVX",
"x coordinate of Primary Vtx",50,-0.01,0.01);
336 h_PVy[0] =
dbe_->book1D(
"PVY",
"y coordinate of Primary Vtx",50,-0.01,0.01);
340 h_PVz[0] =
dbe_->book1D(
"PVZ",
"z coordinate of Primary Vtx",dzBin,dzMin,dzMax);
343 h_PVx[1] =
dbe_->book1D(
"PVXFit",
"x coordinate of Primary Vtx (Last Fit)",50,-0.01,0.01);
347 h_PVy[1] =
dbe_->book1D(
"PVYFit",
"y coordinate of Primary Vtx (Last Fit)",50,-0.01,0.01);
351 h_PVz[1] =
dbe_->book1D(
"PVZFit",
"z coordinate of Primary Vtx (Last Fit)",dzBin,dzMin,dzMax);
354 h_PVxz =
dbe_->bookProfile(
"PVxz",
"PVx vs. PVz",dzBin/2,dzMin,dzMax,dxBin/2,dxMin,dxMax,
"");
358 h_PVyz =
dbe_->bookProfile(
"PVyz",
"PVy vs. PVz",dzBin/2,dzMin,dzMax,dxBin/2,dxMin,dxMax,
"");
363 pvResults=
dbe_->book2D(
"pvResults",
"Results of fitting Primary Vertices",2,0,2,6,0,6);
387 case 0 : sprintf(histo,
"x0_status");
break;
388 case 1 : sprintf(histo,
"y0_status");
break;
389 case 2 : sprintf(histo,
"z0_status");
break;
424 std::cout <<
"TimeOffset = " << eventTime << std::endl;
425 TDatime
da(eventTime);
430 for (std::map<TString,MonitorElement*>::iterator it =
hs.begin();
431 it !=
hs.end(); ++it) {
432 if ((*it).first.Contains(
"time"))
433 (*it).second->getTH1()->GetXaxis()->SetTimeOffset(da.Convert(kTRUE));
442 const std::time_t ftmptime = fbegintimestamp >> 32;
544 edm::LogInfo(
"BeamMonitor") <<
" beginLuminosityBlock:: Begin of Lumi: " << nthlumi << endl;
552 edm::LogInfo(
"BeamMonitor") <<
"analyze:: Spilt event from previous lumi section!" << std::endl;
556 edm::LogInfo(
"BeamMonitor") <<
"analyze:: Spilt event from next lumi section!!!" << std::endl;
565 refBS = *recoBeamSpotHandle;
575 tmphisto->GetNbinsX(),
576 tmphisto->GetXaxis()->GetXmin(),
577 tmphisto->GetXaxis()->GetXmax());
580 for(
int n=0;
n < tmphisto->GetNbinsX();
n++)
589 for ( reco::TrackCollection::const_iterator track = tracks->begin();
590 track != tracks->end(); ++track ) {
597 bool JetTrigPass=
false;
600 for (
unsigned int i=0;
i< triggerResults->size();
i++){
603 if(JetTrigPass)
continue;
607 if(JetTrigPass)
continue;
610 size_t found = trigName.find(string_search);
612 if(found != string::npos){
614 if(triggerResults->accept(thisTrigger_))JetTrigPass =
true;
627 for (reco::VertexCollection::const_iterator
pv = PVCollection->begin();
pv != PVCollection->end(); ++
pv) {
629 if (
pv->isFake() ||
pv->tracksSize()==0)
continue;
632 if(JetTrigPass)nPVcount_ST++;
666 map<int, std::vector<float> >::iterator itpvx=
mapPVx.begin();
667 map<int, std::vector<float> >::iterator itpvy=
mapPVy.begin();
668 map<int, std::vector<float> >::iterator itpvz=
mapPVz.begin();
670 map<int, std::vector<int> >::iterator itbspvinfo=
mapNPV.begin();
689 edm::LogInfo(
"BeamMonitor") <<
"endLuminosityBlock:: Lumi of the last event before endLuminosityBlock: " << nthlumi << endl;
693 const std::time_t fendtime = fendtimestamp >> 32;
704 int currentlumi = nextlumi;
705 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: Lumi of the current fit: " << currentlumi << endl;
706 lastlumi = currentlumi;
717 size_t SizeToRemovePV= rmLSPVi->second;
718 for(std::map<int, std::size_t>::iterator rmLSPVe =
mapLSPVStoreSize.end(); ++rmLSPVi != rmLSPVe;)
719 rmLSPVi->second -= SizeToRemovePV;
730 bool resetHistoFlag_=
false;
736 resetHistoFlag_ =
true;
740 int countEvtLastNLS_=0;
743 std::map< int, std::vector<int> >::iterator mnpv=
mapNPV.begin();
744 std::map< int, std::vector<float> >::iterator mpv2=
mapPVy.begin();
745 std::map< int, std::vector<float> >::iterator mpv3=
mapPVz.begin();
747 for(
std::map<
int, std::vector<float> >::iterator mpv1=
mapPVx.begin(); mpv1 !=
mapPVx.end(); ++mpv1, ++mpv2, ++mpv3, ++mnpv)
749 std::vector<float>::iterator mpvs2 = (mpv2->second).
begin();
750 std::vector<float>::iterator mpvs3 = (mpv3->second).
begin();
751 for(std::vector<float>::iterator mpvs1=(mpv1->second).begin(); mpvs1 !=(mpv1->second).
end(); ++mpvs1, ++mpvs2, ++mpvs3){
760 for(std::vector<int>::iterator mnpvs = (mnpv->second).begin(); mnpvs != (mnpv->second).
end(); ++mnpvs){
761 if((*mnpvs > 0) && (resetHistoFlag_) )
h_nVtx_st->
Fill( (*mnpvs)*(1.0) );
763 countTotPV_ += (*mnpvs);
764 if((*mnpvs) > MaxPVs) MaxPVs = (*mnpvs);
769 char tmpTitlePV[100];
773 std::vector<float> DipPVInfo_;
776 if(countTotPV_ != 0 ){
777 DipPVInfo_.push_back((
float)countEvtLastNLS_);
782 DipPVInfo_.push_back((
float)MaxPVs);
783 DipPVInfo_.push_back((
float)countTotPV_);
786 else{
for(
size_t i= 0;
i < 7;
i++){
if(
i>0)DipPVInfo_.push_back(0.);
787 else DipPVInfo_.push_back((
float)countEvtLastNLS_);}
796 const int countLS_bs =
hs[
"x0_lumi"]->getTH1()->GetEntries();
797 const int countLS_pv =
hs[
"PVx_lumi"]->getTH1()->GetEntries();
798 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: countLS_bs = " << countLS_bs <<
" ; countLS_pv = " << countLS_pv << std::endl;
799 int LSgap_bs = currentlumi/
fitNLumi_ - countLS_bs;
800 int LSgap_pv = currentlumi/
fitPVNLumi_ - countLS_pv;
805 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: LSgap_bs = " << LSgap_bs <<
" ; LSgap_pv = " << LSgap_pv << std::endl;
807 for (
int ig = 0; ig < LSgap_bs; ig++) {
811 hs[
"sigmaX0_lumi"]->ShiftFillLast( 0., 0.,
fitNLumi_ );
812 hs[
"sigmaY0_lumi"]->ShiftFillLast( 0., 0.,
fitNLumi_ );
813 hs[
"sigmaZ0_lumi"]->ShiftFillLast( 0., 0.,
fitNLumi_ );
815 for (
int ig = 0; ig < LSgap_pv; ig++) {
821 for (
int i=1;
i < (currentlumi - previousLS);
i++)
839 bool doPVFit =
false;
864 std::unique_ptr<TF1> fgaus{
new TF1(
"fgaus",
"gaus") };
866 fgaus->SetLineColor(4);
868 mean = fgaus->GetParameter(1);
869 width = fgaus->GetParameter(2);
870 meanErr = fgaus->GetParError(1);
871 widthErr = fgaus->GetParError(2);
875 hs[
"PVx_lumi_all"]->setBinContent(currentlumi,mean);
876 hs[
"PVx_lumi_all"]->setBinError(currentlumi,width);
879 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: Event time outside current range of time histograms!" << std::endl;
881 hs[
"PVx_time"]->setBinContent(nthBin,mean);
882 hs[
"PVx_time"]->setBinError(nthBin,width);
886 hs[
"PVx_time_all"]->setBinContent(jthBin,mean);
887 hs[
"PVx_time_all"]->setBinError(jthBin,width);
899 tmphisto =
static_cast<TH1D *
>((
h_PVx[0]->
getTH1())->Clone(
"tmphisto"));
900 h_PVx[1]->
getTH1()->SetBins(tmphisto->GetNbinsX(),tmphisto->GetXaxis()->GetXmin(),tmphisto->GetXaxis()->GetXmax());
906 mean = fgaus->GetParameter(1);
907 width = fgaus->GetParameter(2);
908 meanErr = fgaus->GetParError(1);
909 widthErr = fgaus->GetParError(2);
911 hs[
"PVy_lumi_all"]->setBinContent(currentlumi,mean);
912 hs[
"PVy_lumi_all"]->setBinError(currentlumi,width);
914 hs[
"PVy_time"]->setBinContent(nthBin,mean);
915 hs[
"PVy_time"]->setBinError(nthBin,width);
918 hs[
"PVy_time_all"]->setBinContent(jthBin,mean);
919 hs[
"PVy_time_all"]->setBinError(jthBin,width);
927 tmphisto =
static_cast<TH1D *
>((
h_PVy[0]->
getTH1())->Clone(
"tmphisto"));
928 h_PVy[1]->
getTH1()->SetBins(tmphisto->GetNbinsX(),tmphisto->GetXaxis()->GetXmin(),tmphisto->GetXaxis()->GetXmax());
935 mean = fgaus->GetParameter(1);
936 width = fgaus->GetParameter(2);
937 meanErr = fgaus->GetParError(1);
938 widthErr = fgaus->GetParError(2);
940 hs[
"PVz_lumi_all"]->setBinContent(currentlumi,mean);
941 hs[
"PVz_lumi_all"]->setBinError(currentlumi,width);
943 hs[
"PVz_time"]->setBinContent(nthBin,mean);
944 hs[
"PVz_time"]->setBinError(nthBin,width);
947 hs[
"PVz_time_all"]->setBinContent(jthBin,mean);
948 hs[
"PVz_time_all"]->setBinError(jthBin,width);
956 tmphisto =
static_cast<TH1D *
>((
h_PVz[0]->
getTH1())->Clone(
"tmphisto"));
957 h_PVz[1]->
getTH1()->SetBins(tmphisto->GetNbinsX(),tmphisto->GetXaxis()->GetXmin(),tmphisto->GetXaxis()->GetXmax());
977 size_t PreviousRecords=0;
980 size_t SizeToRemove=0;
982 SizeToRemove = rmls->second;
983 if(
debug_)
edm::LogInfo(
"BeamMonitor")<<
" The size to remove is = "<< SizeToRemove << endl;
984 int changedAfterThis=0;
986 if(changedAfterThis > 0 ){(rmLS->second) = (rmLS->second)-SizeToRemove;
987 if((
mapLSBSTrkSize.size()- (size_t)changedAfterThis) == 2 )PreviousRecords = (rmLS->second);
1005 if(
debug_)
edm::LogInfo(
"BeamMonitor")<<
"FitAndFill:: Size of theBSViector.size() After =" << theBSvector.size() << endl;
1009 bool countFitting =
false;
1010 if (theBSvector.size() >= PreviousRecords && theBSvector.size() >=
min_Ntrks_) {
1011 countFitting =
true;
1018 const TH1F& cutFlowToSubtract =
mapLSCF.begin()->second;
1020 std::map<int, TH1F>::iterator cf =
mapLSCF.begin();
1022 for(; cf !=
mapLSCF.end(); ++cf) {
1023 cf->second.Add(&cutFlowToSubtract, -1);
1043 unsigned int itrk = 0;
1044 for (vector<BSTrkParameters>::const_iterator BSTrk = theBSvector.begin();
1045 BSTrk != theBSvector.end(); ++BSTrk, ++itrk){
1048 double vx = BSTrk->vx();
1049 double vy = BSTrk->vy();
1050 double z0 = BSTrk->z0();
1063 if (countFitting)
edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: Num of tracks collected = " <<
nthBSTrk_ << endl;
1084 <<
"; address = " << &
refBStime[0] << std::endl;
1086 <<
"; address = " << &
refBStime[1] << std::endl;
1091 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamFitter] Do BeamSpot Fit for LS = " << fitLS.first <<
" to " << fitLS.second << std::endl;
1100 edm::LogInfo(
"BeamMonitor") <<
"\n RESULTS OF DEFAULT FIT:" << endl;
1102 edm::LogInfo(
"BeamMonitor") <<
"[BeamFitter] fitting done \n" << endl;
1110 hs[
"x0_lumi_all"]->setBinContent(currentlumi,bs.
x0());
1111 hs[
"x0_lumi_all"]->setBinError(currentlumi,bs.
x0Error());
1112 hs[
"y0_lumi_all"]->setBinContent(currentlumi,bs.
y0());
1113 hs[
"y0_lumi_all"]->setBinError(currentlumi,bs.
y0Error());
1114 hs[
"z0_lumi_all"]->setBinContent(currentlumi,bs.
z0());
1115 hs[
"z0_lumi_all"]->setBinError(currentlumi,bs.
z0Error());
1116 hs[
"sigmaX0_lumi_all"]->setBinContent(currentlumi, bs.
BeamWidthX());
1118 hs[
"sigmaY0_lumi_all"]->setBinContent(currentlumi, bs.
BeamWidthY());
1120 hs[
"sigmaZ0_lumi_all"]->setBinContent(currentlumi, bs.
sigmaZ());
1121 hs[
"sigmaZ0_lumi_all"]->setBinError(currentlumi, bs.
sigmaZ0Error());
1125 hs[
"x0_time"]->setBinContent(nthBin, bs.
x0());
1126 hs[
"y0_time"]->setBinContent(nthBin, bs.
y0());
1127 hs[
"z0_time"]->setBinContent(nthBin, bs.
z0());
1128 hs[
"sigmaX0_time"]->setBinContent(nthBin, bs.
BeamWidthX());
1129 hs[
"sigmaY0_time"]->setBinContent(nthBin, bs.
BeamWidthY());
1130 hs[
"sigmaZ0_time"]->setBinContent(nthBin, bs.
sigmaZ());
1131 hs[
"x0_time"]->setBinError(nthBin, bs.
x0Error());
1132 hs[
"y0_time"]->setBinError(nthBin, bs.
y0Error());
1133 hs[
"z0_time"]->setBinError(nthBin, bs.
z0Error());
1141 hs[
"x0_time_all"]->setBinContent(jthBin, bs.
x0());
1142 hs[
"y0_time_all"]->setBinContent(jthBin, bs.
y0());
1143 hs[
"z0_time_all"]->setBinContent(jthBin, bs.
z0());
1144 hs[
"sigmaX0_time_all"]->setBinContent(jthBin, bs.
BeamWidthX());
1145 hs[
"sigmaY0_time_all"]->setBinContent(jthBin, bs.
BeamWidthY());
1146 hs[
"sigmaZ0_time_all"]->setBinContent(jthBin, bs.
sigmaZ());
1147 hs[
"x0_time_all"]->setBinError(jthBin, bs.
x0Error());
1148 hs[
"y0_time_all"]->setBinError(jthBin, bs.
y0Error());
1149 hs[
"z0_time_all"]->setBinError(jthBin, bs.
z0Error());
1158 if (bs.
type() > 0) {
1166 double alpha = std::atan2(bs.
y0(),bs.
x0());
1167 TF1 *
f1 =
new TF1(
"f1",
"[0]*sin(x-[1])",-3.14,3.14);
1168 f1->SetParameters(amp,alpha);
1169 f1->SetParLimits(0,amp-0.1,amp+0.1);
1170 f1->SetParLimits(1,alpha-0.577,alpha+0.577);
1171 f1->SetLineColor(4);
1176 std::unique_ptr<TF1> fgaus{
new TF1(
"fgaus",
"gaus") };
1177 fgaus->SetParameters(mean,width);
1178 fgaus->SetLineColor(4);
1185 sprintf(tmpTitle,
"%s %i %s %i",
"Fitted Beam Spot (cm) of LS: ",LSRange.first,
" to ",LSRange.second);
1193 if (bs.
type() > 0) {
1208 if (bs.
type() > 0) {
1231 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamMonitor] Beam fit fails!!! \n" << endl;
1232 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamMonitor] Output beam spot for DIP \n" << endl;
1251 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamMonitor] No fitting \n" << endl;
1252 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamMonitor] Output fake beam spot for DIP \n" << endl;
1291 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: The flag is ON for running average Beam Spot fit"<<endl;
1307 if(
debug_)
edm::LogInfo(
"BeamMonitor") <<
" RestartingFitting:: Restart Beami everything to a fresh start !!! because Gap is > 10 LS" <<endl;
1368 TDatime
da(offsetTime);
1370 double val = h->GetBinContent(
lastNZbin);
1371 double valErr = h->GetBinError(
lastNZbin);
1373 h->GetXaxis()->SetTimeOffset(da.Convert(kTRUE));
1375 h->SetBinContent(bin,val);
1376 h->SetBinError(bin,valErr);
1380 h->GetXaxis()->SetTimeOffset(da.Convert(kTRUE));
1387 bool scroll_ =
false;
1390 edm::LogInfo(
"BeamMonitor") <<
"testScroll:: Reset Time Offset" << std::endl;
1393 if (
hs[
"x0_time"]->getBinContent(
bin) > 0) {
1400 edm::LogInfo(
"BeamMonitor") <<
"testScroll:: Time difference too large since last readout" << std::endl;
1405 edm::LogInfo(
"BeamMonitor") <<
"testScroll:: Offset to last record" << std::endl;
void beginLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &context)
LuminosityBlockID id() const
const char * formatFitTime(const std::time_t &)
T getParameter(std::string const &) const
BeamMonitor(const edm::ParameterSet &)
edm::EDGetTokenT< edm::TriggerResults > hltSrc_
double z0() const
z coordinate
T getUntrackedParameter(std::string const &, T const &) const
const std::string & getName(void) const
get name of ME
unsigned int minNrVertices_
virtual edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const
void setBinContent(int binx, double content)
set content of bin (1-D)
double sigmaZ0Error() const
error on sigma z
MonitorElement * reportSummary
void analyze(const edm::Event &e, const edm::EventSetup &c)
tuple BeamFitter
Input track for PrimaryVertex reconstruction, uncomment the following line to use pixelLess tracks pr...
bool getByToken(EDGetToken token, Handle< PROD > &result) const
MonitorElement * cutFlowTable
double dydzError() const
error on dydz
MonitorElement * h_PVz[2]
bool testScroll(std::time_t &, std::time_t &)
std::vector< BSTrkParameters > getBSvector()
#define DEFINE_FWK_MODULE(type)
std::map< int, std::vector< float > > mapPVx
void subtractFromCutFlow(const TH1F *toSubtract)
edm::EDGetTokenT< reco::VertexCollection > pvSrc_
std::vector< Track > TrackCollection
collection of Tracks
std::size_t getPVvectorSize()
void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
edm::TimeValue_t ftimestamp
edm::LuminosityBlockNumber_t luminosityBlock() const
void update(void)
Mark the object updated.
Timestamp const & beginTime() const
MonitorElement * h_sigmaZ0
MonitorElement * h_nTrk_lumi
std::map< int, std::size_t > mapLSBSTrkSize
double getMean(int axis=1) const
get mean value of histogram along x, y or z axis (axis=1, 2, 3 respectively)
MonitorElement * fitResults
std::vector< std::string > jetTrigger_
void readEvent(const edm::Event &iEvent)
MonitorElement * h_sigmaY0
double getMeanError(int axis=1) const
std::map< int, std::vector< float > > mapPVz
std::map< int, std::time_t > mapBeginPVTime
std::map< int, std::vector< int > > mapNPV
LuminosityBlockNumber_t luminosityBlock() const
std::map< int, std::time_t > mapBeginBSTime
double dydz() const
dydz slope
void ShiftFillLast(double y, double ye=0., int32_t xscale=1)
double dxdzError() const
error on dxdz
unsigned int triggerIndex(std::string const &name) const
edm::EDGetTokenT< reco::TrackCollection > tracksLabel_
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
Timestamp const & endTime() const
void beginRun(const edm::Run &r, const edm::EventSetup &c)
MonitorElement * pvResults
double BeamWidthX() const
beam width X
void setFitLSRange(int ls0, int ls1)
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
TH1F * getTH1F(std::string name, std::string process, std::string rootfolder, DQMStore *dbe_, bool verb, bool clone)
std::pair< time_t, time_t > getRefTime()
double BeamWidthYError() const
error on beam width Y, assume error in X = Y
static std::string const triggerResults
unsigned int offset(bool)
double BeamWidthXError() const
error on beam width X, assume error in X = Y
double z0Error() const
error on z
unsigned long long TimeValue_t
double dxdz() const
dxdz slope
std::map< int, TH1F > mapLSCF
void SetPVInfo(const std::vector< float > &v1_)
double x0Error() const
error on x
double y0Error() const
error on y
static const char *const trigNames[]
double getRMSError(int axis=1) const
get RMS uncertainty of histogram along x, y or z axis(axis=1,2,3 respectively)
void FitAndFill(const edm::LuminosityBlock &lumiSeg, int &, int &, int &)
Float_t summaryContent_[3]
MonitorElement * h_sigmaX0
edm::EDGetTokenT< reco::BeamSpot > bsSrc_
MonitorElement * h_nVtx_st
T const * product() const
MonitorElement * h_PVy[2]
void resizeBSvector(unsigned int nsize)
std::string const & triggerName(unsigned int index) const
MonitorElement * reportSummaryContents[3]
double sigmaZ() const
sigma z
double BeamWidthY() const
beam width Y
LuminosityBlockNumber_t luminosityBlock() const
MonitorElement * h_trk_z0
std::map< int, int > mapBeginBSLS
Timestamp const & beginTime() const
edm::ParameterSet parameters_
double getRMS(int axis=1) const
get RMS of histogram along x, y or z axis (axis=1, 2, 3 respectively)
void resizePVvector(unsigned int npvsize)
TProfile * getTProfile(void) const
double y0() const
y coordinate
void endLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &c)
void setRefTime(time_t t0, time_t t1)
volatile std::atomic< bool > shutdown_flag false
TH2F * getTH2F(void) const
BeamFitter * theBeamFitter
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
MonitorElement * h_PVx[2]
std::pair< int, int > getFitLSRange()
void Reset(void)
reset ME (ie. contents, errors, etc)
std::map< int, int > mapBeginPVLS
void endRun(const edm::Run &r, const edm::EventSetup &c)
TimeValue_t value() const
std::map< int, std::vector< float > > mapPVy
MonitorElement * h_d0_phi0
reco::BeamSpot getBeamSpot()
void scrollTH1(TH1 *, std::time_t)
BeamType type() const
return beam type
MonitorElement * reportSummaryMap
double x0() const
x coordinate
std::map< TString, MonitorElement * > hs
std::map< int, size_t > mapLSPVStoreSize