CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Protected Attributes
trklet::MemoryBase Class Referenceabstract

#include <MemoryBase.h>

Inheritance diagram for trklet::MemoryBase:
trklet::AllInnerStubsMemory trklet::AllProjectionsMemory trklet::AllStubsMemory trklet::CandidateMatchMemory trklet::CleanTrackMemory trklet::DTCLinkMemory trklet::FullMatchMemory trklet::InputLinkMemory trklet::StubPairsMemory trklet::StubTripletsMemory trklet::TrackFitMemory trklet::TrackletParametersMemory trklet::TrackletProjectionsMemory trklet::VMProjectionsMemory trklet::VMStubsMEMemory trklet::VMStubsTEMemory

Public Member Functions

virtual void clean ()=0
 
void findAndReplaceAll (std::string &data, std::string toSearch, std::string replaceStr)
 
std::string getLastPartOfName () const
 
std::string const & getName () const
 
unsigned int initLayerDisk (unsigned int pos)
 
void initLayerDisk (unsigned int pos, int &layer, int &disk)
 
void initSpecialSeeding (unsigned int pos, bool &overlap, bool &extra, bool &extended)
 
 MemoryBase (std::string name, Settings const &settings)
 
void openFile (bool first, std::string dirName, std::string filebase)
 
virtual ~MemoryBase ()=default
 

Static Public Member Functions

static size_t find_nth (const std::string &haystack, size_t pos, const std::string &needle, size_t nth)
 

Protected Attributes

int bx_
 
int event_
 
unsigned int iSector_
 
std::string name_
 
std::ofstream out_
 
Settings const & settings_
 

Detailed Description

Definition at line 13 of file MemoryBase.h.

Constructor & Destructor Documentation

◆ MemoryBase()

MemoryBase::MemoryBase ( std::string  name,
Settings const &  settings 
)

Definition at line 13 of file MemoryBase.cc.

13  : name_(name), settings_(settings) {
14  iSector_ = 0;
15  bx_ = 0;
16  event_ = 0;
17 }

References bx_, event_, and iSector_.

◆ ~MemoryBase()

virtual trklet::MemoryBase::~MemoryBase ( )
virtualdefault

Member Function Documentation

◆ clean()

virtual void trklet::MemoryBase::clean ( )
pure virtual

◆ find_nth()

size_t MemoryBase::find_nth ( const std::string &  haystack,
size_t  pos,
const std::string &  needle,
size_t  nth 
)
static

Definition at line 103 of file MemoryBase.cc.

103  {
104  size_t found_pos = haystack.find(needle, pos);
105  if (0 == nth || string::npos == found_pos)
106  return found_pos;
107  return find_nth(haystack, found_pos + 1, needle, nth - 1);
108 }

Referenced by trklet::FullMatchMemory::FullMatchMemory(), and trklet::TrackletProjectionsMemory::TrackletProjectionsMemory().

◆ findAndReplaceAll()

void MemoryBase::findAndReplaceAll ( std::string &  data,
std::string  toSearch,
std::string  replaceStr 
)

Definition at line 61 of file MemoryBase.cc.

61  {
62  // Get the first occurrence
63  size_t pos = data.find(toSearch);
64 
65  // Repeat till end is reached
66  while (pos != std::string::npos) {
67  // Replace this occurrence of Sub String
68  data.replace(pos, toSearch.size(), replaceStr);
69  // Get the next occurrence from the current position
70  pos = data.find(toSearch, pos + replaceStr.size());
71  }
72 }

References data.

Referenced by openFile().

◆ getLastPartOfName()

std::string trklet::MemoryBase::getLastPartOfName ( ) const
inline

Definition at line 20 of file MemoryBase.h.

20 { return name_.substr(name_.find_last_of('_') + 1); }

References name_.

◆ getName()

std::string const& trklet::MemoryBase::getName ( void  ) const
inline

◆ initLayerDisk() [1/2]

unsigned int MemoryBase::initLayerDisk ( unsigned int  pos)

Definition at line 33 of file MemoryBase.cc.

33  {
34  int layer, disk;
35  initLayerDisk(pos, layer, disk);
36 
37  if (disk > 0)
38  return N_DISK + disk;
39  return layer - 1;
40 }

References initLayerDisk(), phase1PixelTopology::layer, and trklet::N_DISK.

◆ initLayerDisk() [2/2]

void MemoryBase::initLayerDisk ( unsigned int  pos,
int &  layer,
int &  disk 
)

Definition at line 19 of file MemoryBase.cc.

19  {
20  string subname = name_.substr(pos, 2);
21  layer = 0;
22  disk = 0;
23 
24  if (subname.substr(0, 1) == "L")
25  layer = stoi(subname.substr(1, 1));
26  else if (subname.substr(0, 1) == "D")
27  disk = stoi(subname.substr(1, 1));
28  else
29  throw cms::Exception("BadConfig") << __FILE__ << " " << __LINE__ << " name = " << name_ << " subname = " << subname
30  << " " << layer << " " << disk;
31 }

References Exception, phase1PixelTopology::layer, and name_.

Referenced by trklet::AllProjectionsMemory::AllProjectionsMemory(), trklet::FullMatchMemory::FullMatchMemory(), initLayerDisk(), trklet::TrackletProjectionsMemory::TrackletProjectionsMemory(), trklet::VMProjectionsMemory::VMProjectionsMemory(), trklet::VMStubsMEMemory::VMStubsMEMemory(), and trklet::VMStubsTEMemory::VMStubsTEMemory().

◆ initSpecialSeeding()

void MemoryBase::initSpecialSeeding ( unsigned int  pos,
bool &  overlap,
bool &  extra,
bool &  extended 
)

Definition at line 42 of file MemoryBase.cc.

42  {
43  overlap = false;
44  extra = false;
45  extended = false;
46 
47  char subname = name_[pos];
48 
49  static const std::set<char> overlapset = {
50  'X', 'Y', 'W', 'Q', 'R', 'S', 'T', 'Z', 'x', 'y', 'w', 'q', 'r', 's', 't', 'z'};
51  overlap = overlapset.find(subname) != overlapset.end();
52 
53  static const std::set<char> extraset = {'I', 'J', 'K', 'L'};
54  extra = extraset.find(subname) != extraset.end();
55 
56  static const std::set<char> extendedset = {
57  'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'x', 'y', 'z', 'w', 'q', 'r', 's', 't'};
58  extended = extendedset.find(subname) != extendedset.end();
59 }

References name_, and muon::overlap().

Referenced by trklet::VMStubsTEMemory::VMStubsTEMemory().

◆ openFile()

void MemoryBase::openFile ( bool  first,
std::string  dirName,
std::string  filebase 
)

Definition at line 74 of file MemoryBase.cc.

74  {
75  std::string fname = filebase + getName();
76 
77  findAndReplaceAll(fname, "PHIa", "PHIaa");
78  findAndReplaceAll(fname, "PHIb", "PHIbb");
79  findAndReplaceAll(fname, "PHIc", "PHIcc");
80  findAndReplaceAll(fname, "PHId", "PHIdd");
81 
82  findAndReplaceAll(fname, "PHIx", "PHIxx");
83  findAndReplaceAll(fname, "PHIy", "PHIyy");
84  findAndReplaceAll(fname, "PHIz", "PHIzz");
85  findAndReplaceAll(fname, "PHIw", "PHIww");
86 
87  fname += "_";
88  if (iSector_ + 1 < 10)
89  fname += "0";
90  fname += std::to_string(iSector_ + 1);
91  fname += ".dat";
92 
93  openfile(out_, first, dirName, dirName + fname, __FILE__, __LINE__);
94 
95  out_ << "BX = " << (bitset<3>)bx_ << " Event : " << event_ << endl;
96 
97  bx_++;
98  event_++;
99  if (bx_ > 7)
100  bx_ = 0;
101 }

References bx_, TrackerOfflineValidation_Dqm_cff::dirName, event_, findAndReplaceAll(), first, alignmentValidation::fname, getName(), iSector_, trklet::openfile(), out_, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by trklet::InputLinkMemory::writeStubs(), trklet::DTCLinkMemory::writeStubs(), trklet::AllStubsMemory::writeStubs(), trklet::AllInnerStubsMemory::writeStubs(), and trklet::VMStubsTEMemory::writeStubs().

Member Data Documentation

◆ bx_

int trklet::MemoryBase::bx_
protected

◆ event_

int trklet::MemoryBase::event_
protected

◆ iSector_

unsigned int trklet::MemoryBase::iSector_
protected

◆ name_

std::string trklet::MemoryBase::name_
protected

Definition at line 43 of file MemoryBase.h.

Referenced by getLastPartOfName(), getName(), initLayerDisk(), and initSpecialSeeding().

◆ out_

std::ofstream trklet::MemoryBase::out_
protected

◆ settings_

Settings const& trklet::MemoryBase::settings_
protected
trklet::MemoryBase::settings_
Settings const & settings_
Definition: MemoryBase.h:50
trklet::MemoryBase::find_nth
static size_t find_nth(const std::string &haystack, size_t pos, const std::string &needle, size_t nth)
Definition: MemoryBase.cc:103
trklet::openfile
std::ofstream openfile(const std::string &dir, const std::string &fname, const char *file, int line)
Definition: Util.h:138
pos
Definition: PixelAliasList.h:18
trklet::MemoryBase::findAndReplaceAll
void findAndReplaceAll(std::string &data, std::string toSearch, std::string replaceStr)
Definition: MemoryBase.cc:61
trklet::MemoryBase::event_
int event_
Definition: MemoryBase.h:48
trklet::MemoryBase::out_
std::ofstream out_
Definition: MemoryBase.h:46
trklet::N_DISK
constexpr int N_DISK
Definition: Settings.h:22
trklet::MemoryBase::initLayerDisk
void initLayerDisk(unsigned int pos, int &layer, int &disk)
Definition: MemoryBase.cc:19
trklet::MemoryBase::bx_
int bx_
Definition: MemoryBase.h:47
trklet::MemoryBase::getName
std::string const & getName() const
Definition: MemoryBase.h:19
first
auto first
Definition: CAHitNtupletGeneratorKernelsImpl.h:125
phase1PixelTopology::layer
constexpr std::array< uint8_t, layerIndexSize > layer
Definition: phase1PixelTopology.h:99
trklet::MemoryBase::name_
std::string name_
Definition: MemoryBase.h:43
muon::overlap
bool overlap(const reco::Muon &muon1, const reco::Muon &muon2, double pullX=1.0, double pullY=1.0, bool checkAdjacentChambers=false)
Definition: MuonSelectors.cc:791
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
alignmentValidation.fname
string fname
main script
Definition: alignmentValidation.py:959
Exception
Definition: hltDiff.cc:245
TrackerOfflineValidation_Dqm_cff.dirName
dirName
Definition: TrackerOfflineValidation_Dqm_cff.py:55
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
data
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
trklet::MemoryBase::iSector_
unsigned int iSector_
Definition: MemoryBase.h:44