Thought it was time to do some more detailed reverse-engineering on
the various ceramic hybrid modules I've opened:Analog Devices HTS-0010SD Track and Hold
Here's the datasheet.
This is a fairly high-speed "track and hold" (/ "sample and hold") circuit, which can rapidly sample an input waveform - commonly used as part of an analog-to-digital converter, or to downconvert a high-frequency signal for slower processing. This one has a bandwidth of 60 Mhz (17 ns period) but needs about a 10 ns sampling window for the output to settle within 1%, so the usable frequency for a sampling oscilloscope, for example, would be more in the single-digit-Mhz range.
Here's how the internal components are divided up, and the complete schematic I traced from a microscope photo:


Most of the large squares are actually capacitors (two horizontal plates separated vertically by a thin dielectric), used for local filtering of the many power supplies.
Input bufferThis section buffers the incoming signal to drive the sampler. The signal drives two complementary sections, whose outputs are then re-combined by R7, to produce an output which can actively source and sink current. Having the sequential emitter-followers with an NPN followed by a PNP (and a PNP followed by an NPN) roughly cancels the DC offsets from each transistor's Vbe, if biased correctly. I wouldn't expect the linearity to be great, as the Vbe values would change depending on load current, but the datasheet shows 0.01% non-linearity for a 1V max. input: the low signal voltage compared to the supply voltage (small change in bias current) and low output current required due to small hold capacitor value & high-impedance output buffer must help a lot.
Sampling bridgeThis is a standard 4-diode sampling bridge: I can't find any references that explain their basic operation well, but the idea is that you forward-bias all the diodes (with a current source) to turn them all on. Because the diodes are intentionally matched to each other, D1 and D4's forward voltages are roughly equal, and D2 and D3's forward voltages are roughly equal, so the output voltage at R9 & hold capacitor C6 follows the input voltage at R8. To turn off the "gate", you reverse-bias all the diodes, and now hold capacitor C6 is isolated from the input signal, and stores its voltage "indefinitely" (with practical limits).
Bridge driverThis section generates the forward-bias currents and reverse-bias voltages to rapidly switch the sampling bridge on and off, controlled by an ECL input. The one actual IC in this module is an ECL buffer (or gate with hard-wired input?), which accepts a single ECL input and generates complementary ECL outputs, to drive each side of the sampling bridge separately. (While on, the cathode-side D1/D4 voltage needs to be low, while the anode-side D2/D3 voltage needs to be high, to turn on the diodes, and vice versa for when the sampling bridge is off)
Q8 and Q11 serve as biasing for a pair of fixed current sinks (Q6 & Q7), and a pair of fixed current sources (Q9 & Q10). The two halves of Q5 (Q5A & Q5B) serve as switches for the current sinks. When Q5A is off, for example, Q9 sources current / connects a positive voltage to the top side of the sampling bridge. When Q5A turns on, it connects Q6, which now (presumably) sinks more current than Q9 is sourcing, and so overall sinks current / connects a negative voltage to the top side of the sampling bridge, instead.
The speed of the sampling bridge driver is a big limitation on the speed of the whole sampler, along with the properties of the sampling bridge diodes themselves, and so to get the most out of the sampler, the switching needs to happen quickly. The use of ECL and current sources throughout helps here because of...
1. No transistors are ever in saturation, which means that the
"storage time", a significant typically-µs-scale delay when bringing a bipolar out of saturation, doesn't slow down switching.
2. The fixed currents, if set to sufficiently high values, rapidly charge or discharge the various parasitic capacitances at the switching nodes. This provides a simple "control knob" the designer can use for selecting a tradeoff between power consumption and switching speed.
This was the standard way of doing high-speed digital switching with bipolar transistors before fast MOSFETs and CMOS logic became common a decade or two later.
Q5 is a 5-transistor array, with the same pinout & arrangement as a
CA3045/CA3046 or
CA3086: 3 individual transistors, and 2 connected as a differential pair. However, surprisingly, only two of the 5 are actually used. I don't know why they didn't use a 2-transistor matched pair for this.

Also, one mystery here is the DC behavior of the bridge driver. With AC-only coupling via C1 & C2, only short excursions from the default state (whether track, or hold) would be allowed, and I didn't see any mention of that in the datasheet. Also, the only valid states for the sampling bridge are with Q5A & Q5B in opposite states: having both halves of Q5 off when idle doesn't make any sense (although R15 might have something to do with that). I think what looks like capacitors here in the bridge driver (C1 & C2) might actually be diodes for level-shifting between the -5.2V of the ECL signals, and the -15V for the rest of the bridge driver. I can't come up with a diode configuration which actually makes sense though (even including Q5 being PNPs instead of NPNs).
Output bufferQ12 is a JFET used to buffer the hold capacitor's value; a JFET is used here instead of a bipolar transistor because of its infinitesimal input leakage current drains the tiny hold capacitor's voltage much slower than a bipolar's base current would. After Q12A's buffering of the hold capacitor voltage, this drives a class-AB output stage with Q14 & Q15 creating an offset voltage to compensate for Q16 & Q19's Vbe, and create an appropriate DC collector current through Q16 & Q19 at zero voltage (to avoid excessive crossover distortion). Q12B and Q13 create a current sink to bias Q12A and Q14/Q15 at a constant current.
Just like the input buffer, with no feedback you'd expect the output buffer's linearity to suffer here as the Vbe values change with changing current, ruining the careful balancing act, and that's reflected by the datasheet. With a 1KΩ load on the output, harmonic distortion is listed as -68 dB, but with a much heavier 75Ω load, this drops to -50 dB. Honestly, these are still impressive numbers overall for such a simple circuit (esp. because this includes the distortion of the input buffer & sampling bridge), and this is not to criticize the design - just to illustrate the limitations and tradeoffs.
Here's Q12, a matched pair on a single die:
FeedbackAt first when tracing the circuit, I thought this might be some sort of compensation for various parasitic effects of the sampling bridge. However, on further study, this is actually a part of the bridge driver! Q17 and Q18 create a copy of the output voltage (and therefore, a copy of the hold capacitor voltage) at R10.
Remember how I said that the transistors in the bridge driver never were put into saturation? Without this section of the circuit, when the sampling bridge was turned off in "voltage mode" to reverse-bias the sampling diodes, both Q9 and Q7 would be in saturation: there's no path for collector current after charging the parasitic capacitances, and so their collector voltages would rise(/fall) past their base voltages. However, D5, D6, and R10 ensure that Q9 and Q10 always are in the active region by providing a path for their collector current, and limiting how far their collector voltages can rise or fall. R10 sets the reverse-bias voltage on D3 & D4, as (fixed current) x (resistance).
ClosingFinally, the weird silicon(?) resistors make for some interesting shapes:



Let me know if you have any insights or questions.