mirror of
https://github.com/wfjm/w11.git
synced 2026-01-27 04:42:13 +00:00
- use std::function instead of boost - use c++11 lambda instead of boost::bind in most cases - use std::bind in few cases where this deems more readable - use move semantics for passing of function objects
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
// $Id: Rw11UnitRK11.cpp 1081 2018-12-14 22:29:42Z mueller $
|
|
//
|
|
// Copyright 2013-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
//
|
|
// This program is free software; you may redistribute and/or modify it under
|
|
// the terms of the GNU General Public License as published by the Free
|
|
// Software Foundation, either version 3, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful, but
|
|
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
|
|
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
// for complete details.
|
|
//
|
|
// Revision History:
|
|
// Date Rev Version Comment
|
|
// 2017-04-07 868 1.0.1 Dump(): add detail arg
|
|
// 2013-04-20 508 1.0 Initial version
|
|
// 2013-02-05 483 0.1 First draft
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/*!
|
|
\file
|
|
\brief Implemenation of Rw11UnitRK11.
|
|
*/
|
|
|
|
#include "librtools/RosFill.hpp"
|
|
#include "Rw11CntlRK11.hpp"
|
|
|
|
#include "Rw11UnitRK11.hpp"
|
|
|
|
using namespace std;
|
|
|
|
/*!
|
|
\class Retro::Rw11UnitRK11
|
|
\brief FIXME_docs
|
|
*/
|
|
|
|
// all method definitions in namespace Retro
|
|
namespace Retro {
|
|
|
|
//------------------------------------------+-----------------------------------
|
|
//! Constructor
|
|
|
|
Rw11UnitRK11::Rw11UnitRK11(Rw11CntlRK11* pcntl, size_t index)
|
|
: Rw11UnitDiskBase<Rw11CntlRK11>(pcntl, index),
|
|
fRkds(0)
|
|
{
|
|
// setup disk geometry: only rk05 supported, no rk05f !
|
|
fType = "rk05";
|
|
fEnabled = true;
|
|
fNCyl = 203;
|
|
fNHead = 2;
|
|
fNSect = 12;
|
|
fBlksize = 512;
|
|
fNBlock = fNCyl*fNHead*fNSect;
|
|
}
|
|
|
|
//------------------------------------------+-----------------------------------
|
|
//! Destructor
|
|
|
|
Rw11UnitRK11::~Rw11UnitRK11()
|
|
{}
|
|
|
|
//------------------------------------------+-----------------------------------
|
|
//! FIXME_docs
|
|
|
|
void Rw11UnitRK11::Dump(std::ostream& os, int ind, const char* text,
|
|
int detail) const
|
|
{
|
|
RosFill bl(ind);
|
|
os << bl << (text?text:"--") << "Rw11UnitRK11 @ " << this << endl;
|
|
os << bl << " fRkds: " << fRkds << endl;
|
|
|
|
Rw11UnitDiskBase<Rw11CntlRK11>::Dump(os, ind, " ^", detail);
|
|
return;
|
|
}
|
|
|
|
} // end namespace Retro
|