예제 #1
0
파일: HBook.cpp 프로젝트: apfeiffer1/iAIDA
void
iAIDA::AIDA_HBookStore::HBook::declareCWNTuple(const int& id, const std::string& title)
{
  int tid = id;
  std::string ttitle = title;
  std::string diskRes = "D";
  hbnt_(&tid, 
        const_cast<char*>(title.c_str()), 
        const_cast<char*>(diskRes.c_str()), 
        title.length(), diskRes.length());
}
예제 #2
0
 void hbnt(int id,const char*chtitle,const char*chopt)
 {
    void hbnt_(int *id ,const char* name, const char* chmod,int ,int);
    hbnt_(&id,chtitle,chopt,strlen(chtitle),strlen(chopt));
 }
예제 #3
0
파일: cern_c.c 프로젝트: noemi8a/sim-recon
void hbnt(int id,char *CHTITL,char *CHOPT)
{
    hbnt_(&id,CHTITL,CHOPT,strlen(CHTITL),strlen(CHOPT));
}