547 l.hltdata.reserve(250);
548 l.l1data.reserve(192);
549 l.bunchlumivalue.reserve(5);
550 l.bunchlumierror.reserve(5);
551 l.bunchlumiquality.reserve(5);
552 l.beam1intensity.resize(3564,0.0);
553 l.beam2intensity.resize(3564,0.0);
562 throw cms::Exception(
"Non existing service lumi::service::DBService");
566 session->transaction().start(
true);
568 coral::AttributeList lumisummaryBindVariables;
569 lumisummaryBindVariables.extend(
"lsmin",
typeid(
unsigned int));
570 lumisummaryBindVariables.extend(
"lsmax",
typeid(
unsigned int));
571 lumisummaryBindVariables.extend(
"lumidataid",
typeid(
unsigned long long));
573 lumisummaryBindVariables[
"lsmin"].data<
unsigned int>()=luminum;
574 lumisummaryBindVariables[
"lsmax"].data<
unsigned int>()=luminum+m_cachesize;
575 coral::AttributeList lumisummaryOutput;
576 lumisummaryOutput.extend(
"CMSLSNUM",
typeid(
unsigned int));
577 lumisummaryOutput.extend(
"INSTLUMI",
typeid(
float));
578 lumisummaryOutput.extend(
"STARTORBIT",
typeid(
unsigned int));
579 lumisummaryOutput.extend(
"NUMORBIT",
typeid(
unsigned int));
580 lumisummaryOutput.extend(
"CMSBXINDEXBLOB",
typeid(coral::Blob));
581 lumisummaryOutput.extend(
"BEAMINTENSITYBLOB_1",
typeid(coral::Blob));
582 lumisummaryOutput.extend(
"BEAMINTENSITYBLOB_2",
typeid(coral::Blob));
583 lumisummaryOutput.extend(
"BXLUMIVALUE_OCC1",
typeid(coral::Blob));
584 lumisummaryOutput.extend(
"BXLUMIVALUE_OCC2",
typeid(coral::Blob));
585 lumisummaryOutput.extend(
"BXLUMIVALUE_ET",
typeid(coral::Blob));
586 coral::IQuery* lumisummaryQuery=schema.newQuery();
588 lumisummaryQuery->addToOutputList(
"CMSLSNUM");
589 lumisummaryQuery->addToOutputList(
"INSTLUMI");
590 lumisummaryQuery->addToOutputList(
"STARTORBIT");
591 lumisummaryQuery->addToOutputList(
"NUMORBIT");
592 lumisummaryQuery->addToOutputList(
"CMSBXINDEXBLOB");
593 lumisummaryQuery->addToOutputList(
"BEAMINTENSITYBLOB_1");
594 lumisummaryQuery->addToOutputList(
"BEAMINTENSITYBLOB_2");
595 lumisummaryQuery->addToOutputList(
"BXLUMIVALUE_OCC1");
596 lumisummaryQuery->addToOutputList(
"BXLUMIVALUE_OCC2");
597 lumisummaryQuery->addToOutputList(
"BXLUMIVALUE_ET");
598 lumisummaryQuery->setCondition(
"CMSLSNUM>=:lsmin AND CMSLSNUM<:lsmax AND DATA_ID=:lumidataid",lumisummaryBindVariables);
599 lumisummaryQuery->defineOutput(lumisummaryOutput);
600 coral::ICursor& lumisummarycursor=lumisummaryQuery->execute();
601 unsigned int rowcounter=0;
602 while( lumisummarycursor.next() ){
603 const coral::AttributeList& row=lumisummarycursor.currentRow();
604 unsigned int cmslsnum=row[
"CMSLSNUM"].data<
unsigned int>();
607 lsdata.lumivalue=row[
"INSTLUMI"].data<
float>();
608 lsdata.lumierror=0.0;
609 lsdata.lumiquality=0;
610 lsdata.startorbit=row[
"STARTORBIT"].data<
unsigned int>();
611 lsdata.numorbit=row[
"NUMORBIT"].data<
unsigned int>();
613 if(!row[
"CMSBXINDEXBLOB"].isNull() && !row[
"BXLUMIVALUE_OCC1"].isNull() ){
614 const coral::Blob& bxindexBlob=row[
"CMSBXINDEXBLOB"].data<coral::Blob>();
615 const void* bxindex_StartAddress=bxindexBlob.startingAddress();
616 short* bxindex=(
short*)::malloc(bxindexBlob.size());
617 const coral::Blob& beam1intensityBlob=row[
"BEAMINTENSITYBLOB_1"].data<coral::Blob>();
618 const void* beam1intensityBlob_StartAddress=beam1intensityBlob.startingAddress();
619 float* beam1intensity=(
float*)::malloc(beam1intensityBlob.size());
620 const coral::Blob& beam2intensityBlob=row[
"BEAMINTENSITYBLOB_2"].data<coral::Blob>();
621 const void* beam2intensityBlob_StartAddress=beam2intensityBlob.startingAddress();
622 float* beam2intensity=(
float*)::malloc(beam2intensityBlob.size());
623 std::memmove(bxindex,bxindex_StartAddress,bxindexBlob.size());
624 std::memmove(beam1intensity,beam1intensityBlob_StartAddress,beam1intensityBlob.size());
625 std::memmove(beam2intensity,beam2intensityBlob_StartAddress,beam2intensityBlob.size());
627 unsigned int iMax = bxindexBlob.size()/
sizeof(short);
628 unsigned int lsb1Max = lsdata.beam1intensity.size();
629 unsigned int lsb2Max = lsdata.beam2intensity.size();
630 unsigned int ib1Max = beam1intensityBlob.size()/
sizeof(
float);
631 unsigned int ib2Max = beam2intensityBlob.size()/
sizeof(
float);
632 for(
unsigned int i=0;
i<iMax;++
i){
633 unsigned int idx=bxindex[
i];
634 if(ib1Max>
i && lsb1Max>idx){
635 lsdata.beam1intensity.at(idx)=beam1intensity[
i];
637 if(ib2Max>
i && lsb2Max>idx){
638 lsdata.beam2intensity.at(idx)=beam2intensity[
i];
642 ::free(beam1intensity);
643 ::free(beam2intensity);
645 const coral::Blob& bxlumivalBlob_occ1=row[
"BXLUMIVALUE_OCC1"].data<coral::Blob>();
646 const void* bxlumival_occ1_StartAddress=bxlumivalBlob_occ1.startingAddress();
647 float* bxlumival_occ1=(
float*)::malloc(bxlumivalBlob_occ1.size());
648 std::memmove(bxlumival_occ1,bxlumival_occ1_StartAddress,bxlumivalBlob_occ1.size());
649 std::vector<float> bxlumivalVec_occ1(bxlumival_occ1,bxlumival_occ1+bxlumivalBlob_occ1.size()/
sizeof(
float));
650 ::free(bxlumival_occ1);
651 lsdata.bunchlumivalue.push_back(std::make_pair(
std::string(
"OCC1"),bxlumivalVec_occ1));
652 lsdata.bunchlumierror.push_back(std::make_pair(
std::string(
"OCC1"),std::vector<float>(3564)));
653 lsdata.bunchlumiquality.push_back(std::make_pair(
std::string(
"OCC1"),std::vector<short>(3564)));
654 const coral::Blob& bxlumivalBlob_occ2=row[
"BXLUMIVALUE_OCC2"].data<coral::Blob>();
655 const void* bxlumival_occ2_StartAddress=bxlumivalBlob_occ2.startingAddress();
656 float* bxlumival_occ2=(
float*)::malloc(bxlumivalBlob_occ2.size());
657 std::memmove(bxlumival_occ2,bxlumival_occ2_StartAddress,bxlumivalBlob_occ2.size());
658 std::vector<float> bxlumivalVec_occ2(bxlumival_occ2,bxlumival_occ2+bxlumivalBlob_occ1.size()/
sizeof(
float));
659 ::free(bxlumival_occ2);
660 lsdata.bunchlumivalue.push_back(std::make_pair(
std::string(
"OCC2"),bxlumivalVec_occ2));
661 lsdata.bunchlumierror.push_back(std::make_pair(
std::string(
"OCC2"),std::vector<float>(3564)));
662 lsdata.bunchlumiquality.push_back(std::make_pair(
std::string(
"OCC2"),std::vector<short>(3564)));
664 const coral::Blob& bxlumivalBlob_et=row[
"BXLUMIVALUE_ET"].data<coral::Blob>();
665 const void* bxlumival_et_StartAddress=bxlumivalBlob_et.startingAddress();
666 float* bxlumival_et=(
float*)::malloc(bxlumivalBlob_et.size());
667 std::memmove(bxlumival_et,bxlumival_et_StartAddress,bxlumivalBlob_et.size());
668 std::vector<float> bxlumivalVec_et(bxlumival_et,bxlumival_et+bxlumivalBlob_et.size()/
sizeof(
float));
669 ::free(bxlumival_et);
670 lsdata.bunchlumivalue.push_back(std::make_pair(
std::string(
"ET"),bxlumivalVec_et));
671 lsdata.bunchlumierror.push_back(std::make_pair(
std::string(
"ET"),std::vector<float>(3564)));
672 lsdata.bunchlumiquality.push_back(std::make_pair(
std::string(
"ET"),std::vector<short>(3564)));
680 delete lumisummaryQuery;
685 coral::AttributeList trgBindVariables;
686 trgBindVariables.extend(
"lsmin",
typeid(
unsigned int));
687 trgBindVariables.extend(
"lsmax",
typeid(
unsigned int));
688 trgBindVariables.extend(
"trgdataid",
typeid(
unsigned long long));
689 trgBindVariables[
"lsmin"].data<
unsigned int>()=luminum;
690 trgBindVariables[
"lsmax"].data<
unsigned int>()=luminum+m_cachesize;
692 coral::AttributeList trgOutput;
693 trgOutput.extend(
"CMSLSNUM",
typeid(
unsigned int));
694 trgOutput.extend(
"DEADTIMECOUNT",
typeid(
unsigned long long));
695 trgOutput.extend(
"BITZEROCOUNT",
typeid(
unsigned int));
696 trgOutput.extend(
"BITZEROPRESCALE",
typeid(
unsigned int));
697 trgOutput.extend(
"PRESCALEBLOB",
typeid(coral::Blob));
698 trgOutput.extend(
"TRGCOUNTBLOB",
typeid(coral::Blob));
700 coral::IQuery* trgQuery=schema.newQuery();
702 trgQuery->addToOutputList(
"CMSLSNUM");
703 trgQuery->addToOutputList(
"DEADTIMECOUNT");
704 trgQuery->addToOutputList(
"BITZEROCOUNT");
705 trgQuery->addToOutputList(
"BITZEROPRESCALE");
706 trgQuery->addToOutputList(
"PRESCALEBLOB");
707 trgQuery->addToOutputList(
"TRGCOUNTBLOB");
708 trgQuery->setCondition(
"CMSLSNUM>=:lsmin AND CMSLSNUM<:lsmax AND DATA_ID=:trgdataid",trgBindVariables);
709 trgQuery->defineOutput(trgOutput);
710 coral::ICursor& trgcursor=trgQuery->execute();
711 while( trgcursor.next() ){
712 const coral::AttributeList& row=trgcursor.currentRow();
713 unsigned int cmslsnum=row[
"CMSLSNUM"].data<
unsigned int>();
715 lsdata.deadcount=row[
"DEADTIMECOUNT"].data<
unsigned long long>();
716 lsdata.bitzerocount=row[
"BITZEROCOUNT"].data<
unsigned int>();
717 lsdata.bitzeroprescale=row[
"BITZEROPRESCALE"].data<
unsigned int>();
718 if(!row[
"PRESCALEBLOB"].isNull()){
719 const coral::Blob& prescaleblob=row[
"PRESCALEBLOB"].data<coral::Blob>();
720 const void* prescaleblob_StartAddress=prescaleblob.startingAddress();
721 unsigned int* prescales=(
unsigned int*)::malloc(prescaleblob.size());
722 std::memmove(prescales,prescaleblob_StartAddress,prescaleblob.size());
723 const coral::Blob& trgcountblob=row[
"TRGCOUNTBLOB"].data<coral::Blob>();
724 const void* trgcountblob_StartAddress=trgcountblob.startingAddress();
725 unsigned int* trgcounts=(
unsigned int*)::malloc(trgcountblob.size());
726 std::memmove(trgcounts,trgcountblob_StartAddress,trgcountblob.size());
727 for(
unsigned int i=0;
i < trgcountblob.size()/
sizeof(
unsigned int); ++
i){
730 l1tmp.prescale=prescales[
i];
731 l1tmp.ratecount=trgcounts[
i];
732 lsdata.l1data.push_back(l1tmp);
742 coral::AttributeList hltBindVariables;
743 hltBindVariables.extend(
"lsmin",
typeid(
unsigned int));
744 hltBindVariables.extend(
"lsmax",
typeid(
unsigned int));
745 hltBindVariables.extend(
"hltdataid",
typeid(
unsigned long long));
746 hltBindVariables[
"lsmin"].data<
unsigned int>()=luminum;
747 hltBindVariables[
"lsmax"].data<
unsigned int>()=luminum+m_cachesize;
749 coral::AttributeList hltOutput;
750 hltOutput.extend(
"CMSLSNUM",
typeid(
unsigned int));
751 hltOutput.extend(
"HLTCOUNTBLOB",
typeid(coral::Blob));
752 hltOutput.extend(
"HLTACCEPTBLOB",
typeid(coral::Blob));
753 hltOutput.extend(
"PRESCALEBLOB",
typeid(coral::Blob));
754 coral::IQuery* hltQuery=schema.newQuery();
756 hltQuery->addToOutputList(
"CMSLSNUM");
757 hltQuery->addToOutputList(
"HLTCOUNTBLOB");
758 hltQuery->addToOutputList(
"HLTACCEPTBLOB");
759 hltQuery->addToOutputList(
"PRESCALEBLOB");
760 hltQuery->setCondition(
"CMSLSNUM>=:lsmin AND CMSLSNUM<:lsmax AND DATA_ID=:hltdataid",hltBindVariables);
761 hltQuery->defineOutput(hltOutput);
762 coral::ICursor& hltcursor=hltQuery->execute();
763 while( hltcursor.next() ){
764 const coral::AttributeList& row=hltcursor.currentRow();
765 unsigned int cmslsnum=row[
"CMSLSNUM"].data<
unsigned int>();
767 if(!row[
"PRESCALEBLOB"].isNull()){
768 const coral::Blob& hltprescaleblob=row[
"PRESCALEBLOB"].data<coral::Blob>();
769 const void* hltprescaleblob_StartAddress=hltprescaleblob.startingAddress();
770 unsigned int* hltprescales=(
unsigned int*)::malloc(hltprescaleblob.size());
771 std::memmove(hltprescales,hltprescaleblob_StartAddress,hltprescaleblob.size());
772 const coral::Blob& hltcountblob=row[
"HLTCOUNTBLOB"].data<coral::Blob>();
773 const void* hltcountblob_StartAddress=hltcountblob.startingAddress();
774 unsigned int* hltcounts=(
unsigned int*)::malloc(hltcountblob.size());
775 std::memmove(hltcounts,hltcountblob_StartAddress,hltcountblob.size());
776 const coral::Blob& hltacceptblob=row[
"HLTACCEPTBLOB"].data<coral::Blob>();
777 const void* hltacceptblob_StartAddress=hltacceptblob.startingAddress();
778 unsigned int* hltaccepts=(
unsigned int*)::malloc(hltacceptblob.size());
779 std::memmove(hltaccepts,hltacceptblob_StartAddress,hltacceptblob.size());
780 unsigned int nhltaccepts = hltacceptblob.size()/
sizeof(
unsigned int);
783 <<
" hltaccepts, but the run chache is empty. hltdata will not be written";
787 for(
unsigned int i=0;
i < hltacceptblob.size()/
sizeof(
unsigned int); ++
i){
790 hlttmp.prescale=hltprescales[
i];
791 hlttmp.l1passcount=hltcounts[
i];
792 hlttmp.acceptcount=hltaccepts[
i];
793 lsdata.hltdata.push_back(hlttmp);
795 ::free(hltprescales);
801 session->transaction().commit();
803 session->transaction().rollback();
static const std::string lshltTableName()
unsigned long long m_cachedhltdataid
ISessionProxyPtr connectReadOnly(const std::string &connectstring)
static const std::string lstrgTableName()
unsigned long long m_cachedtrgdataid
unsigned long long m_cachedlumidataid
std::map< unsigned int, PerLSData > m_lscache
std::vector< std::string > TRGBitNames
static const std::string lumisummaryv2TableName()
std::vector< std::string > HLTPathNames