CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes | Friends
edm::VParameterSetEntry Class Reference

#include <VParameterSetEntry.h>

Public Member Functions

std::string dump (unsigned int indent=0) const
 
void fillVPSet () const
 reconstitutes the VPSet from the registry More...
 
bool isTracked () const
 
ParameterSetpsetInVector (int i)
 
void registerPsetsAndUpdateIDs ()
 
std::vector< ParameterSet >::size_type size () const
 
void toDigest (cms::Digest &digest) const
 
std::string toString () const
 
void toString (std::string &result) const
 
 VParameterSetEntry ()
 
 VParameterSetEntry (std::vector< ParameterSet > const &vpset, bool isTracked)
 
 VParameterSetEntry (std::string const &rep)
 
std::vector< ParameterSet > const & vpset () const
 returns the VPSet More...
 
std::vector< ParameterSet > & vpsetForUpdate ()
 
 ~VParameterSetEntry ()
 

Private Attributes

value_ptr< std::vector< ParameterSetID > > theIDs_
 
atomic_value_ptr< std::vector< ParameterSet > > theVPSet_
 
bool tracked_
 

Friends

std::ostream & operator<< (std::ostream &os, VParameterSetEntry const &vpsetEntry)
 

Detailed Description

Definition at line 23 of file VParameterSetEntry.h.

Constructor & Destructor Documentation

edm::VParameterSetEntry::VParameterSetEntry ( )

Definition at line 12 of file VParameterSetEntry.cc.

12  :
13  tracked_(false),
14  theVPSet_(),
15  theIDs_() {
16  }
value_ptr< std::vector< ParameterSetID > > theIDs_
atomic_value_ptr< std::vector< ParameterSet > > theVPSet_
edm::VParameterSetEntry::VParameterSetEntry ( std::vector< ParameterSet > const &  vpset,
bool  isTracked 
)

Definition at line 18 of file VParameterSetEntry.cc.

References MillePedeFileConverter_cfg::e, mps_fire::i, and theVPSet_.

18  :
20  theVPSet_(new std::vector<ParameterSet>),
21  theIDs_() {
22  for (std::vector<ParameterSet>::const_iterator i = vpset.begin(), e = vpset.end(); i != e; ++i) {
23  theVPSet_->push_back(*i);
24  }
25  }
value_ptr< std::vector< ParameterSetID > > theIDs_
atomic_value_ptr< std::vector< ParameterSet > > theVPSet_
std::vector< ParameterSet > const & vpset() const
returns the VPSet
edm::VParameterSetEntry::VParameterSetEntry ( std::string const &  rep)

Definition at line 27 of file VParameterSetEntry.cc.

References MillePedeFileConverter_cfg::e, mps_fire::i, edm::split(), AlCaHLTBitMon_QueryRunRegistry::string, groupFilesInBlocks::temp, and theIDs_.

27  :
28  tracked_(rep[0] == '+'),
29  theVPSet_(),
30  theIDs_(new std::vector<ParameterSetID>) {
31  assert(rep[0] == '+' || rep[0] == '-');
32  std::vector<std::string> temp;
33  // need a substring that starts at the '{'
34  std::string bracketedRepr(rep.begin()+2, rep.end());
35  split(std::back_inserter(temp), bracketedRepr, '{', ',', '}');
36  theIDs_->reserve(temp.size());
37  for (std::vector<std::string>::const_iterator i = temp.begin(), e = temp.end(); i != e; ++i) {
38  theIDs_->push_back(ParameterSetID(*i));
39  }
40  }
value_ptr< std::vector< ParameterSetID > > theIDs_
atomic_value_ptr< std::vector< ParameterSet > > theVPSet_
bool split(OutIter result, std::string const &string_to_split, char first, char sep, char last)
Definition: split.h:88
rep
Definition: cuy.py:1189
Hash< ParameterSetType > ParameterSetID
edm::VParameterSetEntry::~VParameterSetEntry ( )

Definition at line 42 of file VParameterSetEntry.cc.

42 {}

Member Function Documentation

std::string edm::VParameterSetEntry::dump ( unsigned int  indent = 0) const

Definition at line 133 of file VParameterSetEntry.cc.

References MillePedeFileConverter_cfg::e, mps_fire::i, isTracked(), command_line::start, AlCaHLTBitMon_QueryRunRegistry::string, and vpset().

Referenced by edm::ParameterSet::dump(), isTracked(), and edm::operator<<().

133  {
134  std::string indentation(indent, ' ');
135  std::ostringstream os;
136  std::vector<ParameterSet> const& vps = vpset();
137  os << "VPSet "<<(isTracked()?"tracked":"untracked")<<" = ({" << std::endl;
139  std::string const between(",\n");
140  for(std::vector<ParameterSet>::const_iterator i = vps.begin(), e = vps.end(); i != e; ++i) {
141  os << start << indentation << i->dump(indent);
142  start = between;
143  }
144  if (!vps.empty()) {
145  os << std::endl;
146  }
147  os << indentation << "})";
148  return os.str();
149  }
std::vector< ParameterSet > const & vpset() const
returns the VPSet
void edm::VParameterSetEntry::fillVPSet ( ) const

reconstitutes the VPSet from the registry

Definition at line 93 of file VParameterSetEntry.cc.

References edm::getParameterSet(), theIDs_, theVPSet_, and tmp.

Referenced by isTracked(), registerPsetsAndUpdateIDs(), vpset(), and vpsetForUpdate().

93  {
94  if(nullptr == theVPSet_.load()) {
95  auto tmp = std::make_unique<std::vector<ParameterSet>>();
96  tmp->reserve(theIDs_->size());
97  for (auto const& theID : *theIDs_) {
98  tmp->push_back(getParameterSet(theID));
99  }
100  VParameterSet* expected = nullptr;
101  if(theVPSet_.compare_exchange_strong(expected, tmp.get())) {
102  // theVPSet_ was equal to nullptr and now is equal to tmp.get()
103  tmp.release();
104  }
105  }
106  }
std::vector< ParameterSet > VParameterSet
Definition: ParameterSet.h:33
ParameterSet const & getParameterSet(ParameterSetID const &id)
value_ptr< std::vector< ParameterSetID > > theIDs_
atomic_value_ptr< std::vector< ParameterSet > > theVPSet_
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
bool edm::VParameterSetEntry::isTracked ( ) const
inline

Definition at line 36 of file VParameterSetEntry.h.

References dump(), fillVPSet(), mps_fire::i, summarizeEdmComparisonLogfiles::indent, operator<<, psetInVector(), registerPsetsAndUpdateIDs(), size(), AlCaHLTBitMon_QueryRunRegistry::string, tracked_, vpset(), and vpsetForUpdate().

Referenced by Types.PSet::clone(), Mixins._ParameterTypeBase::configTypeName(), dump(), FWPSetTableManager::handleVPSetEntry(), Types.int32::insertInto(), Types.uint32::insertInto(), Types.int64::insertInto(), Types.uint64::insertInto(), Types.double::insertInto(), Mixins.UsingBlock::insertInto(), Types.bool::insertInto(), Types.string::insertInto(), Types.EventID::insertInto(), Types.LuminosityBlockID::insertInto(), Types.LuminosityBlockRange::insertInto(), Types.EventRange::insertInto(), Types.InputTag::insertInto(), Types.ESInputTag::insertInto(), Types.FileInPath::insertInto(), Types.PSet::insertInto(), Types.vint32::insertInto(), Types.vuint32::insertInto(), Types.vint64::insertInto(), Types.vuint64::insertInto(), Types.vdouble::insertInto(), Types.vbool::insertInto(), Types.vstring::insertInto(), Types.VLuminosityBlockID::insertInto(), Types.VInputTag::insertInto(), Types.VESInputTag::insertInto(), Types.VEventID::insertInto(), Types.VLuminosityBlockRange::insertInto(), Types.VEventRange::insertInto(), Types.VPSet::insertInto(), prettyPrint(), and Mixins._ParameterTypeBase::pythonTypeName().

ParameterSet & edm::VParameterSetEntry::psetInVector ( int  i)
void edm::VParameterSetEntry::registerPsetsAndUpdateIDs ( )

Definition at line 121 of file VParameterSetEntry.cc.

References MillePedeFileConverter_cfg::e, fillVPSet(), mps_fire::i, theIDs_, and theVPSet_.

Referenced by isTracked().

121  {
122  fillVPSet();
123  theIDs_ = value_ptr<std::vector<ParameterSetID> >(new std::vector<ParameterSetID>);
124  theIDs_->resize(theVPSet_->size());
125  for (std::vector<ParameterSet>::iterator i = theVPSet_->begin(), e = theVPSet_->end(); i != e; ++i) {
126  if (!i->isRegistered()) {
127  i->registerIt();
128  }
129  theIDs_->at(i - theVPSet_->begin()) = i->id();
130  }
131  }
void fillVPSet() const
reconstitutes the VPSet from the registry
value_ptr< std::vector< ParameterSetID > > theIDs_
atomic_value_ptr< std::vector< ParameterSet > > theVPSet_
std::vector< ParameterSet >::size_type edm::VParameterSetEntry::size ( void  ) const
void edm::VParameterSetEntry::toDigest ( cms::Digest digest) const

Definition at line 60 of file VParameterSetEntry.cc.

References cms::Digest::append(), MillePedeFileConverter_cfg::e, mps_fire::i, theIDs_, and tracked_.

60  {
61  assert(theIDs_);
62  digest.append(tracked_ ? "+q{" : "-q{", 3);
63  bool started = false;
64  for (std::vector<ParameterSetID>::const_iterator i = theIDs_->begin(), e = theIDs_->end(); i != e; ++i) {
65  if (started)
66  digest.append(",", 1);
67  i->toDigest(digest);
68  started = true;
69  }
70  digest.append("}",1);
71  }
value_ptr< std::vector< ParameterSetID > > theIDs_
void append(std::string const &s)
Definition: Digest.cc:182
std::string edm::VParameterSetEntry::toString ( ) const
void edm::VParameterSetEntry::toString ( std::string &  result) const

Definition at line 45 of file VParameterSetEntry.cc.

References MillePedeFileConverter_cfg::e, mps_fire::i, command_line::start, AlCaHLTBitMon_QueryRunRegistry::string, theIDs_, and tracked_.

45  {
46  assert(theIDs_);
47  result += tracked_ ? "+q" : "-q";
48  result += '{';
50  std::string const between(",");
51  for (std::vector<ParameterSetID>::const_iterator i = theIDs_->begin(), e = theIDs_->end(); i != e; ++i) {
52  result += start;
53  i->toString(result);
54  start = between;
55  }
56  result += '}';
57  }
value_ptr< std::vector< ParameterSetID > > theIDs_
std::vector< ParameterSet > const & edm::VParameterSetEntry::vpset ( ) const

returns the VPSet

Definition at line 79 of file VParameterSetEntry.cc.

References fillVPSet(), and theVPSet_.

Referenced by dump(), edm::ParameterSet::getParameterSetVector(), edm::ParameterSet::getUntrackedParameterSetVector(), FWPSetTableManager::handleVPSetEntry(), isTracked(), prettyPrint(), and size().

79  {
80  fillVPSet();
81  return *theVPSet_;
82  }
void fillVPSet() const
reconstitutes the VPSet from the registry
atomic_value_ptr< std::vector< ParameterSet > > theVPSet_
std::vector< ParameterSet > & edm::VParameterSetEntry::vpsetForUpdate ( )

Definition at line 88 of file VParameterSetEntry.cc.

References fillVPSet(), and theVPSet_.

Referenced by FWPSetTableManager::handleVPSetEntry(), and isTracked().

88  {
89  fillVPSet();
90  return *theVPSet_;
91  }
void fillVPSet() const
reconstitutes the VPSet from the registry
atomic_value_ptr< std::vector< ParameterSet > > theVPSet_

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  os,
VParameterSetEntry const &  vpsetEntry 
)
friend

Definition at line 151 of file VParameterSetEntry.cc.

Referenced by isTracked().

151  {
152  os << vpsetEntry.dump();
153  return os;
154  }

Member Data Documentation

value_ptr<std::vector<ParameterSetID> > edm::VParameterSetEntry::theIDs_
private
atomic_value_ptr<std::vector<ParameterSet> > edm::VParameterSetEntry::theVPSet_
mutableprivate
bool edm::VParameterSetEntry::tracked_
private

Definition at line 54 of file VParameterSetEntry.h.

Referenced by isTracked(), toDigest(), and toString().