ATLAS Offline Software
Loading...
Searching...
No Matches
Event/EventTPCnv/EventTPCnv/vectorize.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef VECTORIZE_H
6#define VECTORIZE_H
7#include <string>
8#include <vector>
9
10void strToUI( const std::string &m, std::vector<unsigned int> &v);
11void UITostr(std::string &n, std::vector<unsigned int>::const_iterator &i, bool bugcompat);
12void bitmapToUI( const std::vector<bool> &m, std::vector<unsigned int> &v);
13void UITobitmap(std::vector<bool> &n, std::vector<unsigned int>::const_iterator &i,
14 bool bugcompat);
15
16#endif
void UITobitmap(std::vector< bool > &n, std::vector< unsigned int >::const_iterator &i, bool bugcompat)
void UITostr(std::string &n, std::vector< unsigned int >::const_iterator &i, bool bugcompat)
Definition vectorize.cxx:29
void bitmapToUI(const std::vector< bool > &m, std::vector< unsigned int > &v)
Definition vectorize.cxx:85
void strToUI(const std::string &m, std::vector< unsigned int > &v)
Definition vectorize.cxx:9