48 static char ts[] =
"yyyy-Mm-dd hh:mm:ss";
51 int year = ptm->tm_year;
53 edm::LogError(
"BadTimeStamp") <<
"year reported is " << year <<
"!! resetting to 2011..." << std::endl;
56 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);
58 #ifdef STRIP_TRAILING_BLANKS_IN_TIMEZONE
59 unsigned int b = strlen(ts);
60 while (ts[--b] ==
' ') {ts[
b] = 0;}
72 countEvt_(0),countLumi_(0),nthBSTrk_(0),nFitElements_(3),resetHistos_(
false),StartAverage_(
false),firstAverageFit_(0),countGapLumi_(0) {
76 bsSrc_ = consumes<reco::BeamSpot>(
80 .getUntrackedParameter<InputTag>(
"TrackCollection"));
81 pvSrc_ = consumes<reco::VertexCollection>(
83 hltSrc_ = consumes<TriggerResults>(
110 if (fitNLumi_ <= 0) fitNLumi_ = 1;
149 h_nTrk_lumi=
dbe_->book1D(
"nTrk_lumi",
"Num. of selected tracks vs lumi",20,0.5,20.5);
153 h_d0_phi0 =
dbe_->bookProfile(
"d0_phi0",
"d_{0} vs. #phi_{0} (Selected Tracks)",phiBin,phiMin,phiMax,dxBin,dxMin,dxMax,
"");
157 h_vx_vy =
dbe_->book2D(
"trk_vx_vy",
"Vertex (PCA) position of selected tracks",vxBin,vxMin,vxMax,vxBin,vxMin,vxMax);
163 TDatime *
da =
new TDatime();
164 gStyle->SetTimeOffset(da->Convert(kTRUE));
167 string coord[nvar_] = {
"x",
"y",
"z",
"sigmaX",
"sigmaY",
"sigmaZ"};
168 string label[nvar_] = {
"x_{0} (cm)",
"y_{0} (cm)",
"z_{0} (cm)",
169 "#sigma_{X_{0}} (cm)",
"#sigma_{Y_{0}} (cm)",
"#sigma_{Z_{0}} (cm)"};
170 for (
int i = 0;
i < 4;
i++) {
172 for (
int ic=0; ic<nvar_; ++ic) {
173 TString histName(coord[ic]);
174 TString histTitle(coord[ic]);
175 string ytitle(label[ic]);
178 bool createHisto =
true;
181 histName +=
"0_time";
182 xtitle =
"Time [UTC]";
184 histTitle +=
" coordinate of beam spot vs time (Fit)";
186 histTitle = histTitle.Insert(5,
" ") +
" of beam spot vs time (Fit)";
191 histName.Insert(0,
"PV");
193 histTitle.Insert(0,
"Avg. ");
194 histTitle +=
" position of primary vtx vs lumi";
195 xtitle =
"Lumisection";
196 ytitle.insert(0,
"PV");
197 ytitle +=
" #pm #sigma_{PV";
201 else createHisto =
false;
206 histName.Insert(0,
"PV");
208 histTitle.Insert(0,
"Avg. ");
209 histTitle +=
" position of primary vtx vs time";
210 xtitle =
"Time [UTC]";
211 ytitle.insert(0,
"PV");
212 ytitle +=
" #pm #sigma_{PV";
216 else createHisto =
false;
219 histName +=
"0_lumi";
220 xtitle =
"Lumisection";
222 histTitle +=
" coordinate of beam spot vs lumi (Fit)";
224 histTitle = histTitle.Insert(5,
" ") +
" of beam spot vs lumi (Fit)";
228 edm::LogInfo(
"BeamMonitor") <<
"hitsName = " << histName <<
"; histTitle = " << histTitle << std::endl;
229 hs[histName] =
dbe_->book1D(histName,histTitle,40,0.5,40.5);
230 hs[histName]->setAxisTitle(xtitle,1);
231 hs[histName]->setAxisTitle(ytitle,2);
232 hs[histName]->getTH1()->SetOption(
"E1");
233 if (histName.Contains(
"time")) {
236 hs[histName]->setAxisTimeDisplay(1);
237 hs[histName]->setAxisTimeFormat(
"%H:%M:%S",1);
241 hs[histName] =
dbe_->book1D(histName,histTitle,40,0.5,40.5);
242 hs[histName]->getTH1()->SetBit(TH1::kCanRebin);
243 hs[histName]->setAxisTitle(xtitle,1);
244 hs[histName]->setAxisTitle(ytitle,2);
245 hs[histName]->getTH1()->SetOption(
"E1");
246 if (histName.Contains(
"time")) {
249 hs[histName]->setAxisTimeDisplay(1);
250 hs[histName]->setAxisTimeFormat(
"%H:%M:%S",1);
257 h_trk_z0 =
dbe_->book1D(
"trk_z0",
"z_{0} of selected tracks",dzBin,dzMin,dzMax);
260 h_vx_dz =
dbe_->bookProfile(
"vx_dz",
"v_{x} vs. dz of selected tracks",dzBin,dzMin,dzMax,dxBin,dxMin,dxMax,
"");
264 h_vy_dz =
dbe_->bookProfile(
"vy_dz",
"v_{y} vs. dz of selected tracks",dzBin,dzMin,dzMax,dxBin,dxMin,dxMax,
"");
268 h_x0 =
dbe_->book1D(
"BeamMonitorFeedBack_x0",
"x coordinate of beam spot (Fit)",100,-0.01,0.01);
272 h_y0 =
dbe_->book1D(
"BeamMonitorFeedBack_y0",
"y coordinate of beam spot (Fit)",100,-0.01,0.01);
276 h_z0 =
dbe_->book1D(
"BeamMonitorFeedBack_z0",
"z coordinate of beam spot (Fit)",dzBin,dzMin,dzMax);
280 h_sigmaX0 =
dbe_->book1D(
"BeamMonitorFeedBack_sigmaX0",
"sigma x0 of beam spot (Fit)",100,0,0.05);
284 h_sigmaY0 =
dbe_->book1D(
"BeamMonitorFeedBack_sigmaY0",
"sigma y0 of beam spot (Fit)",100,0,0.05);
288 h_sigmaZ0 =
dbe_->book1D(
"BeamMonitorFeedBack_sigmaZ0",
"sigma z0 of beam spot (Fit)",100,0,10);
293 h_trkPt=
dbe_->book1D(
"trkPt",
"p_{T} of all reco'd tracks (no selection)",200,0.,50.);
296 h_trkVz=
dbe_->book1D(
"trkVz",
"Z coordinate of PCA of all reco'd tracks (no selection)",dzBin,dzMin,dzMax);
299 cutFlowTable =
dbe_->book1D(
"cutFlowTable",
"Cut flow table of track selection", 9, 0, 9 );
302 fitResults=
dbe_->book2D(
"fitResults",
"Results of previous good beam fit",2,0,2,8,0,8);
319 h_nVtx =
dbe_->book1D(
"vtxNbr",
"Reconstructed Vertices(non-fake) in all Event",60,-0.5,59.5);
323 h_nVtx_st =
dbe_->book1D(
"vtxNbr_SelectedTriggers",
"Reconstructed Vertices(non-fake) in Events",60,-0.5,59.5);
327 h_PVx[0] =
dbe_->book1D(
"PVX",
"x coordinate of Primary Vtx",50,-0.01,0.01);
331 h_PVy[0] =
dbe_->book1D(
"PVY",
"y coordinate of Primary Vtx",50,-0.01,0.01);
335 h_PVz[0] =
dbe_->book1D(
"PVZ",
"z coordinate of Primary Vtx",dzBin,dzMin,dzMax);
338 h_PVx[1] =
dbe_->book1D(
"PVXFit",
"x coordinate of Primary Vtx (Last Fit)",50,-0.01,0.01);
342 h_PVy[1] =
dbe_->book1D(
"PVYFit",
"y coordinate of Primary Vtx (Last Fit)",50,-0.01,0.01);
346 h_PVz[1] =
dbe_->book1D(
"PVZFit",
"z coordinate of Primary Vtx (Last Fit)",dzBin,dzMin,dzMax);
349 h_PVxz =
dbe_->bookProfile(
"PVxz",
"PVx vs. PVz",dzBin/2,dzMin,dzMax,dxBin/2,dxMin,dxMax,
"");
353 h_PVyz =
dbe_->bookProfile(
"PVyz",
"PVy vs. PVz",dzBin/2,dzMin,dzMax,dxBin/2,dxMin,dxMax,
"");
358 pvResults=
dbe_->book2D(
"pvResults",
"Results of fitting Primary Vertices",2,0,2,6,0,6);
382 case 0 : sprintf(histo,
"x0_status");
break;
383 case 1 : sprintf(histo,
"y0_status");
break;
384 case 2 : sprintf(histo,
"z0_status");
break;
419 std::cout <<
"TimeOffset = " << eventTime << std::endl;
420 TDatime
da(eventTime);
425 for (std::map<TString,MonitorElement*>::iterator it =
hs.begin();
426 it !=
hs.end(); ++it) {
427 if ((*it).first.Contains(
"time"))
428 (*it).second->getTH1()->GetXaxis()->SetTimeOffset(da.Convert(kTRUE));
437 const std::time_t ftmptime = fbegintimestamp >> 32;
539 edm::LogInfo(
"BeamMonitor") <<
" beginLuminosityBlock:: Begin of Lumi: " << nthlumi << endl;
547 edm::LogInfo(
"BeamMonitor") <<
"analyze:: Spilt event from previous lumi section!" << std::endl;
551 edm::LogInfo(
"BeamMonitor") <<
"analyze:: Spilt event from next lumi section!!!" << std::endl;
560 refBS = *recoBeamSpotHandle;
570 tmphisto->GetNbinsX(),
571 tmphisto->GetXaxis()->GetXmin(),
572 tmphisto->GetXaxis()->GetXmax());
575 for(
int n=0;
n < tmphisto->GetNbinsX();
n++)
583 for ( reco::TrackCollection::const_iterator track = tracks->begin();
584 track != tracks->end(); ++track ) {
591 bool JetTrigPass=
false;
594 for (
unsigned int i=0;
i< triggerResults->size();
i++){
597 if(JetTrigPass)
continue;
601 if(JetTrigPass)
continue;
604 size_t found = trigName.find(string_search);
606 if(found != string::npos){
608 if(triggerResults->accept(thisTrigger_))JetTrigPass =
true;
621 for (reco::VertexCollection::const_iterator pv = PVCollection->begin(); pv != PVCollection->end(); ++pv) {
623 if (pv->isFake() || pv->tracksSize()==0)
continue;
626 if(JetTrigPass)nPVcount_ST++;
660 map<int, std::vector<float> >::iterator itpvx=
mapPVx.begin();
661 map<int, std::vector<float> >::iterator itpvy=
mapPVy.begin();
662 map<int, std::vector<float> >::iterator itpvz=
mapPVz.begin();
664 map<int, std::vector<int> >::iterator itbspvinfo=
mapNPV.begin();
683 edm::LogInfo(
"BeamMonitor") <<
"endLuminosityBlock:: Lumi of the last event before endLuminosityBlock: " << nthlumi << endl;
687 const std::time_t fendtime = fendtimestamp >> 32;
698 int currentlumi = nextlumi;
699 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: Lumi of the current fit: " << currentlumi << endl;
700 lastlumi = currentlumi;
711 size_t SizeToRemovePV= rmLSPVi->second;
712 for(std::map<int, std::size_t>::iterator rmLSPVe =
mapLSPVStoreSize.end(); ++rmLSPVi != rmLSPVe;)
713 rmLSPVi->second -= SizeToRemovePV;
724 bool resetHistoFlag_=
false;
730 resetHistoFlag_ =
true;
734 int countEvtLastNLS_=0;
737 std::map< int, std::vector<int> >::iterator mnpv=
mapNPV.begin();
738 std::map< int, std::vector<float> >::iterator mpv2=
mapPVy.begin();
739 std::map< int, std::vector<float> >::iterator mpv3=
mapPVz.begin();
741 for(
std::map<
int, std::vector<float> >::iterator mpv1=
mapPVx.begin(); mpv1 !=
mapPVx.end(); ++mpv1, ++mpv2, ++mpv3, ++mnpv)
743 std::vector<float>::iterator mpvs2 = (mpv2->second).
begin();
744 std::vector<float>::iterator mpvs3 = (mpv3->second).
begin();
745 for(std::vector<float>::iterator mpvs1=(mpv1->second).begin(); mpvs1 !=(mpv1->second).
end(); ++mpvs1, ++mpvs2, ++mpvs3){
754 for(std::vector<int>::iterator mnpvs = (mnpv->second).begin(); mnpvs != (mnpv->second).
end(); ++mnpvs){
755 if((*mnpvs > 0) && (resetHistoFlag_) )
h_nVtx_st->
Fill( (*mnpvs)*(1.0) );
757 countTotPV_ += (*mnpvs);
758 if((*mnpvs) > MaxPVs) MaxPVs = (*mnpvs);
763 char tmpTitlePV[100];
767 std::vector<float> DipPVInfo_;
770 if(countTotPV_ != 0 ){
771 DipPVInfo_.push_back((
float)countEvtLastNLS_);
776 DipPVInfo_.push_back((
float)MaxPVs);
777 DipPVInfo_.push_back((
float)countTotPV_);
780 else{
for(
size_t i= 0;
i < 7;
i++){
if(
i>0)DipPVInfo_.push_back(0.);
781 else DipPVInfo_.push_back((
float)countEvtLastNLS_);}
790 const int countLS_bs =
hs[
"x0_lumi"]->getTH1()->GetEntries();
791 const int countLS_pv =
hs[
"PVx_lumi"]->getTH1()->GetEntries();
792 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: countLS_bs = " << countLS_bs <<
" ; countLS_pv = " << countLS_pv << std::endl;
793 int LSgap_bs = currentlumi/
fitNLumi_ - countLS_bs;
794 int LSgap_pv = currentlumi/
fitPVNLumi_ - countLS_pv;
799 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: LSgap_bs = " << LSgap_bs <<
" ; LSgap_pv = " << LSgap_pv << std::endl;
801 for (
int ig = 0; ig < LSgap_bs; ig++) {
805 hs[
"sigmaX0_lumi"]->ShiftFillLast( 0., 0.,
fitNLumi_ );
806 hs[
"sigmaY0_lumi"]->ShiftFillLast( 0., 0.,
fitNLumi_ );
807 hs[
"sigmaZ0_lumi"]->ShiftFillLast( 0., 0.,
fitNLumi_ );
809 for (
int ig = 0; ig < LSgap_pv; ig++) {
815 for (
int i=1;
i < (currentlumi - previousLS);
i++)
833 bool doPVFit =
false;
858 std::unique_ptr<TF1> fgaus{
new TF1(
"fgaus",
"gaus") };
860 fgaus->SetLineColor(4);
862 mean = fgaus->GetParameter(1);
863 width = fgaus->GetParameter(2);
864 meanErr = fgaus->GetParError(1);
865 widthErr = fgaus->GetParError(2);
869 hs[
"PVx_lumi_all"]->setBinContent(currentlumi,mean);
870 hs[
"PVx_lumi_all"]->setBinError(currentlumi,width);
873 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: Event time outside current range of time histograms!" << std::endl;
875 hs[
"PVx_time"]->setBinContent(nthBin,mean);
876 hs[
"PVx_time"]->setBinError(nthBin,width);
880 hs[
"PVx_time_all"]->setBinContent(jthBin,mean);
881 hs[
"PVx_time_all"]->setBinError(jthBin,width);
893 tmphisto =
static_cast<TH1D *
>((
h_PVx[0]->
getTH1())->Clone(
"tmphisto"));
894 h_PVx[1]->
getTH1()->SetBins(tmphisto->GetNbinsX(),tmphisto->GetXaxis()->GetXmin(),tmphisto->GetXaxis()->GetXmax());
900 mean = fgaus->GetParameter(1);
901 width = fgaus->GetParameter(2);
902 meanErr = fgaus->GetParError(1);
903 widthErr = fgaus->GetParError(2);
905 hs[
"PVy_lumi_all"]->setBinContent(currentlumi,mean);
906 hs[
"PVy_lumi_all"]->setBinError(currentlumi,width);
908 hs[
"PVy_time"]->setBinContent(nthBin,mean);
909 hs[
"PVy_time"]->setBinError(nthBin,width);
912 hs[
"PVy_time_all"]->setBinContent(jthBin,mean);
913 hs[
"PVy_time_all"]->setBinError(jthBin,width);
921 tmphisto =
static_cast<TH1D *
>((
h_PVy[0]->
getTH1())->Clone(
"tmphisto"));
922 h_PVy[1]->
getTH1()->SetBins(tmphisto->GetNbinsX(),tmphisto->GetXaxis()->GetXmin(),tmphisto->GetXaxis()->GetXmax());
929 mean = fgaus->GetParameter(1);
930 width = fgaus->GetParameter(2);
931 meanErr = fgaus->GetParError(1);
932 widthErr = fgaus->GetParError(2);
934 hs[
"PVz_lumi_all"]->setBinContent(currentlumi,mean);
935 hs[
"PVz_lumi_all"]->setBinError(currentlumi,width);
937 hs[
"PVz_time"]->setBinContent(nthBin,mean);
938 hs[
"PVz_time"]->setBinError(nthBin,width);
941 hs[
"PVz_time_all"]->setBinContent(jthBin,mean);
942 hs[
"PVz_time_all"]->setBinError(jthBin,width);
950 tmphisto =
static_cast<TH1D *
>((
h_PVz[0]->
getTH1())->Clone(
"tmphisto"));
951 h_PVz[1]->
getTH1()->SetBins(tmphisto->GetNbinsX(),tmphisto->GetXaxis()->GetXmin(),tmphisto->GetXaxis()->GetXmax());
970 size_t PreviousRecords=0;
973 size_t SizeToRemove=0;
975 SizeToRemove = rmls->second;
976 if(
debug_)
edm::LogInfo(
"BeamMonitor")<<
" The size to remove is = "<< SizeToRemove << endl;
977 int changedAfterThis=0;
979 if(changedAfterThis > 0 ){(rmLS->second) = (rmLS->second)-SizeToRemove;
980 if((
mapLSBSTrkSize.size()- (size_t)changedAfterThis) == 2 )PreviousRecords = (rmLS->second);
998 if(
debug_)
edm::LogInfo(
"BeamMonitor")<<
"FitAndFill:: Size of theBSViector.size() After =" << theBSvector.size() << endl;
1002 bool countFitting =
false;
1003 if (theBSvector.size() >= PreviousRecords && theBSvector.size() >=
min_Ntrks_) {
1004 countFitting =
true;
1011 const TH1F& cutFlowToSubtract =
mapLSCF.begin()->second;
1013 std::map<int, TH1F>::iterator cf =
mapLSCF.begin();
1015 for(; cf !=
mapLSCF.end(); ++cf) {
1016 cf->second.Add(&cutFlowToSubtract, -1);
1036 unsigned int itrk = 0;
1037 for (vector<BSTrkParameters>::const_iterator BSTrk = theBSvector.begin();
1038 BSTrk != theBSvector.end(); ++BSTrk, ++itrk){
1041 double vx = BSTrk->vx();
1042 double vy = BSTrk->vy();
1043 double z0 = BSTrk->z0();
1056 if (countFitting)
edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: Num of tracks collected = " <<
nthBSTrk_ << endl;
1077 <<
"; address = " << &
refBStime[0] << std::endl;
1079 <<
"; address = " << &
refBStime[1] << std::endl;
1084 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamFitter] Do BeamSpot Fit for LS = " << fitLS.first <<
" to " << fitLS.second << std::endl;
1093 edm::LogInfo(
"BeamMonitor") <<
"\n RESULTS OF DEFAULT FIT:" << endl;
1095 edm::LogInfo(
"BeamMonitor") <<
"[BeamFitter] fitting done \n" << endl;
1103 hs[
"x0_lumi_all"]->setBinContent(currentlumi,bs.
x0());
1104 hs[
"x0_lumi_all"]->setBinError(currentlumi,bs.
x0Error());
1105 hs[
"y0_lumi_all"]->setBinContent(currentlumi,bs.
y0());
1106 hs[
"y0_lumi_all"]->setBinError(currentlumi,bs.
y0Error());
1107 hs[
"z0_lumi_all"]->setBinContent(currentlumi,bs.
z0());
1108 hs[
"z0_lumi_all"]->setBinError(currentlumi,bs.
z0Error());
1109 hs[
"sigmaX0_lumi_all"]->setBinContent(currentlumi, bs.
BeamWidthX());
1111 hs[
"sigmaY0_lumi_all"]->setBinContent(currentlumi, bs.
BeamWidthY());
1113 hs[
"sigmaZ0_lumi_all"]->setBinContent(currentlumi, bs.
sigmaZ());
1114 hs[
"sigmaZ0_lumi_all"]->setBinError(currentlumi, bs.
sigmaZ0Error());
1118 hs[
"x0_time"]->setBinContent(nthBin, bs.
x0());
1119 hs[
"y0_time"]->setBinContent(nthBin, bs.
y0());
1120 hs[
"z0_time"]->setBinContent(nthBin, bs.
z0());
1121 hs[
"sigmaX0_time"]->setBinContent(nthBin, bs.
BeamWidthX());
1122 hs[
"sigmaY0_time"]->setBinContent(nthBin, bs.
BeamWidthY());
1123 hs[
"sigmaZ0_time"]->setBinContent(nthBin, bs.
sigmaZ());
1124 hs[
"x0_time"]->setBinError(nthBin, bs.
x0Error());
1125 hs[
"y0_time"]->setBinError(nthBin, bs.
y0Error());
1126 hs[
"z0_time"]->setBinError(nthBin, bs.
z0Error());
1134 hs[
"x0_time_all"]->setBinContent(jthBin, bs.
x0());
1135 hs[
"y0_time_all"]->setBinContent(jthBin, bs.
y0());
1136 hs[
"z0_time_all"]->setBinContent(jthBin, bs.
z0());
1137 hs[
"sigmaX0_time_all"]->setBinContent(jthBin, bs.
BeamWidthX());
1138 hs[
"sigmaY0_time_all"]->setBinContent(jthBin, bs.
BeamWidthY());
1139 hs[
"sigmaZ0_time_all"]->setBinContent(jthBin, bs.
sigmaZ());
1140 hs[
"x0_time_all"]->setBinError(jthBin, bs.
x0Error());
1141 hs[
"y0_time_all"]->setBinError(jthBin, bs.
y0Error());
1142 hs[
"z0_time_all"]->setBinError(jthBin, bs.
z0Error());
1151 if (bs.
type() > 0) {
1159 double alpha = std::atan2(bs.
y0(),bs.
x0());
1160 TF1 *
f1 =
new TF1(
"f1",
"[0]*sin(x-[1])",-3.14,3.14);
1161 f1->SetParameters(amp,alpha);
1162 f1->SetParLimits(0,amp-0.1,amp+0.1);
1163 f1->SetParLimits(1,alpha-0.577,alpha+0.577);
1164 f1->SetLineColor(4);
1169 std::unique_ptr<TF1> fgaus{
new TF1(
"fgaus",
"gaus") };
1170 fgaus->SetParameters(mean,width);
1171 fgaus->SetLineColor(4);
1178 sprintf(tmpTitle,
"%s %i %s %i",
"Fitted Beam Spot (cm) of LS: ",LSRange.first,
" to ",LSRange.second);
1186 if (bs.
type() > 0) {
1201 if (bs.
type() > 0) {
1224 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamMonitor] Beam fit fails!!! \n" << endl;
1225 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamMonitor] Output beam spot for DIP \n" << endl;
1244 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamMonitor] No fitting \n" << endl;
1245 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: [BeamMonitor] Output fake beam spot for DIP \n" << endl;
1284 edm::LogInfo(
"BeamMonitor") <<
"FitAndFill:: The flag is ON for running average Beam Spot fit"<<endl;
1300 if(
debug_)
edm::LogInfo(
"BeamMonitor") <<
" RestartingFitting:: Restart Beami everything to a fresh start !!! because Gap is > 10 LS" <<endl;
1361 TDatime
da(offsetTime);
1363 double val = h->GetBinContent(
lastNZbin);
1364 double valErr = h->GetBinError(
lastNZbin);
1366 h->GetXaxis()->SetTimeOffset(da.Convert(kTRUE));
1368 h->SetBinContent(bin,val);
1369 h->SetBinError(bin,valErr);
1373 h->GetXaxis()->SetTimeOffset(da.Convert(kTRUE));
1380 bool scroll_ =
false;
1383 edm::LogInfo(
"BeamMonitor") <<
"testScroll:: Reset Time Offset" << std::endl;
1386 if (
hs[
"x0_time"]->getBinContent(
bin) > 0) {
1393 edm::LogInfo(
"BeamMonitor") <<
"testScroll:: Time difference too large since last readout" << std::endl;
1398 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